-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
71 lines (70 loc) · 3.2 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
# -*- coding: utf-8 -*-
# BioSTEAM: The Biorefinery Simulation and Techno-Economic Analysis Modules
# Copyright (C) 2020, Yoel Cortes-Pena <[email protected]>
#
# This module is under the UIUC open-source license. See
# github.com/BioSTEAMDevelopmentGroup/biosteam/blob/master/LICENSE.txt
# for license details.
from setuptools import setup
setup(
name='biorefineries',
packages=['biorefineries'],
license='MIT',
version='2.32.2',
description="Biorefinery models in BioSTEAM",
long_description=open('README.rst', encoding='utf-8').read(),
author='Yoel Cortes-Pena',
install_requires=['biosteam>=2.47.0,<2.48.0'],
python_requires=">=3.9",
package_data=
{'biorefineries': ['biorefineries/*',
'cane/*',
'cane/systems/*',
'cane/systems/oilcane/*',
'cane/systems/sugarcane/*',
'milk/*',
'milk/images/*',
'milk/results/*',
'cane/units/*',
'cane/data/*',
'cellulosic/*',
'cellulosic/systems/*',
'cellulosic/systems/fermentation/*',
'cellulosic/systems/pretreatment/*',
'ethanol/*',
'biodiesel/*',
'biodiesel/units/*',
'tea/*',
'lipidcane/*',
'lipidcane/utils/*',
'oilcane/*',
'cornstover/*',
'corn/*',
'lactic/*',
'lactic/analyses/*',
'sugarcane/*',
'fattyalcohols/*',
'fattyalcohols/units/*',
'LAOs/*',
'LAOs/units/*',
'abm/*',
'acester/*',
'acester/images/*',
'acester/results/*',
'acester/notebooks/*',
'tests/*',
]},
platforms=['Windows', 'Mac', 'Linux'],
author_email='[email protected]',
url='https://github.com/BioSTEAMDevelopmentGroup/Bioindustrial-Park/tree/master/biorefineries/BioSTEAM 2.x.x/biorefineries',
download_url='https://github.com/BioSTEAMDevelopmentGroup/Bioindustrial-Park/tree/master/biorefineries/BioSTEAM 2.x.x/biorefineries',
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Mathematics'],
keywords='chemical process simulation bioprocess engineering mass CABBI biorefinery biofuel bioproducts lipid-cane corn stover',
)