Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
SockRocks authored Mar 19, 2024
1 parent 2336741 commit b681907
Showing 1 changed file with 22 additions and 15 deletions.
37 changes: 22 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
import setuptools
from setuptools import find_packages, setup, Extension

with open('README.md', 'r')as f:
long_desc = f.read()

with open('README.md', 'r') as fh:
description = fh.read()

setuptools.setup(name='SetCalcPy',
version='0.0.2',
author='SockRocks',
packages=['SetCalcPy'],
long_description=description,
long_description_content_type="text/markdown",
url='https://github.com/SockRocks/Python-Elementary-Set-Theory-Calculator',
license='MIT',
python_requires='>=3.8',
install_requires=[]
)
setup(
name='SetCalcPy',
ext_modules=[Extension(name='powerSetCalc', sources=['SetCalcPy/powerSet/powerSetCalc.c'])],
version='1.1.2',
description='A library for performing basic set theory operations.',
package_dir = {"Set":"SetCalcPy"},
packages = ['SetCalcPy'],
keywords=['calculator', 'homework-help', 'set-theory'],
long_description = long_desc,
long_description_content_type = 'text/markdown',
url = 'https://github.com/SockRocks/Python-Elementary-Set-Theory-Calculator',
author = 'Ethan Gaver',
author_email = 'ethaneggcode@gmail.com',
license = 'GNU',
extras_require = {
"dev":["twine >= 4.0.2"]
},
python_requires=">=3.11.5"
)

0 comments on commit b681907

Please sign in to comment.