-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 802 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import find_packages, setup
with open('README.md', 'r')as f:
long_desc = f.read()
setup(
name='SetCalcPy',
version='1.2.6',
description='A library for performing basic set theory operations.',
package_dir = {"SetCalcPy":"src/SetCalcPy", 'powerSet':'src/SetCalcPy/powerSet'},
packages = find_packages(where='src'),
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"
)