-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
30 lines (28 loc) · 1.12 KB
/
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
24
25
26
27
28
29
30
import setuptools
with open("README.md", "r") as fh:
long_des = fh.read()
setuptools.setup(
name='poopylab',
version='0.01.0.20231219',
author="Kai Zhang",
author_email="poopylabproject@gmail.com",
description="The .#2. best simulation tool for biological wastewater treatment, by the nerds, for the the nerds.",
long_description=long_des,
long_description_content_type="text/markdown",
keywords="Activated Sludge Model ASM Wastewater Simulation",
url="https://github.com/toogad/PooPyLab_Project",
project_urls={
'Source': 'https://github.com/toogad/PooPyLab_Project',
'Documentation': 'https://toogad.github.io/brownbook/index.html',
'Tracker': 'https://github.com/toogad/PooPyLab_Project/issues',
'Funding': 'https://donate.pypi.org'
},
packages=setuptools.find_packages(include=['PooPyLab', 'PooPyLab.*']),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
],
python_requires='>=3',
install_requires=['scipy']
)