-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
45 lines (41 loc) · 1.19 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
name = 'aguaclara',
version = '0.3.4',
description = (
'An open-source Python package for designing and performing research '
'on AguaClara water treatment plants.'
),
long_description = readme,
long_description_content_type="text/markdown",
url = 'https://github.com/AguaClara/aguaclara',
project_urls = {
"Documentation": "https://aguaclara.github.io/aguaclara/"
},
author = 'AguaClara Cornell',
author_email = 'aguaclara@cornell.edu',
license = 'MIT',
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
packages = find_packages(),
# Ensure that this matches Pipfile > [packages]
install_requires = [
'matplotlib',
'urllib3',
'pint',
'pandas',
'scipy',
'onshape_client',
'numpy==1.22.1'
],
python_requires='>=3.8',
setup_requires=["pytest-runner"],
tests_require=["pytest==7.2.1"],
include_package_data=True,
test_suite="tests",
zip_safe=False
)