forked from AguaClara/aguaclara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 794 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
24
25
26
27
28
29
30
from setuptools import setup, find_packages
setup(
name = 'aguaclara',
version = '0.1.16',
description = (
'An open-source Python package for designing and performing research '
'on AguaClara water treatment plants.'
),
url = 'https://github.com/AguaClara/aguaclara',
author = 'AguaClara Cornell',
author_email = '[email protected]',
license = 'MIT',
packages = find_packages(),
# Ensure that this matches Pipfile > [packages]
install_requires = [
'matplotlib==3.0.3', # Supports Python 3.5
'urllib3',
'pint==0.8.1',
'pandas',
'scipy',
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
include_package_data=True,
test_suite="tests",
zip_safe=False
)