-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
91 lines (85 loc) · 2.76 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
EXPOsan: Exposition of sanitation and resource recovery systems
This module is developed by:
Yalin Li <[email protected]>
This module is under the University of Illinois/NCSA Open Source License.
Please refer to https://github.com/QSD-Group/EXPOsan/blob/main/LICENSE.txt
for license details.
'''
from setuptools import setup
setup(
name='exposan',
packages=['exposan'],
version='1.4.0',
license='UIUC',
author='Quantitative Sustainable Design Group',
author_email='[email protected]',
description='Exposition of sanitation and resource recovery systems',
long_description=open('README.rst', encoding='utf-8').read(),
url='https://github.com/QSD-Group/EXPOsan',
project_urls={
'Homepage': 'https://qsdsan.com',
'Documentation': 'https://qsdsan.readthedocs.io',
'Repository': 'https://github.com/QSD-Group/EXPOsan',
},
install_requires=['qsdsan>=1.4.0',],
package_data=
{'exposan': [
'adm/*',
'adm/data/*',
'asm/*',
'asm/data/*',
'biogenic_refinery/*',
'biogenic_refinery/data/*',
'bsm1/*',
'bsm1/data/*',
'bsm2/*',
'bsm2/data/*',
'bwaise/*',
'bwaise/data/*',
'cas/*',
'eco_san/*',
'eco_san/data/*',
'htl/*',
'htl/data/*',
'metab/*',
'metab/data/*',
'metab/utils/*',
'metro/*',
'new_generator/*',
'new_generator/data/*',
'pm2_batch/*',
'pm2_batch/data/*',
'pm2_ecorecover/*',
'pm2_ecorecover/data/*',
'pou_disinfection/*',
'pou_disinfection/data/*',
'reclaimer/*',
'reclaimer/data/*',
]},
classifiers=[
'License :: OSI Approved :: University of Illinois/NCSA Open Source License',
'Environment :: Console',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Mathematics',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Manufacturing',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
keywords=[
'quantitative sustainable design',
'sanitation',
'resource recovery',
'techno-economic analysis',
'life cycle assessment',
],
)