-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
87 lines (86 loc) · 3.39 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
# -*- coding: utf-8 -*-
# BioSTEAM: The Biorefinery Simulation and Techno-Economic Analysis Modules
# Copyright (C) 2020-2023, 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='thermosteam',
packages=['thermosteam'],
license='MIT',
version='0.48.0',
description="BioSTEAM's Premier Thermodynamic Engine",
long_description=open('README.rst', encoding='utf-8').read(),
author='Yoel Cortes-Pena',
install_requires=['numpy==1.26.4',
'pint>=0.22',
'scipy>=1.5',
'thermo>=0.2.25',
'IPython>=7.9.0',
'colorpalette>=0.3.3',
'pandas>=0.25.2',
'matplotlib>=3.1.1',
'xlrd>=1.2.0',
'openpyxl>=3.0.0',
'free_properties>=0.3.6',
'flexsolve>=0.5.4',
'numba==0.60.0',
'pyglet'],
extras_require={
'dev': [
'biorefineries>=2.23.16',
'sympy',
'sphinx',
'sphinx_rtd_theme',
'pyyaml',
'pytest-cov',
'coveralls',
]
},
package_data={
'thermosteam': [
'base/*',
'equilibrium/*',
'reaction/*',
'utils/*',
'utils/decorators/*',
'mixture/*',
'chemicals/*',
'chemicals/Reaction/*',
'equilibrium/UNIFAC/*',
'thermo/*',
'units_of_measure.txt',
]
},
python_requires='>=3.9',
platforms=['Windows', 'Mac', 'Linux'],
author_email='[email protected]',
url='https://github.com/BioSTEAMDevelopmentGroup/thermosteam',
download_url='https://github.com/BioSTEAMDevelopmentGroup/thermosteam.git',
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: University of Illinois/NCSA Open Source License',
'License :: OSI Approved :: MIT License',
'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 :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Education'],
keywords=['thermodynamics', 'chemical engineering', 'mass and energy balance', 'material properties', 'phase equilibrium'],
)