-
Notifications
You must be signed in to change notification settings - Fork 235
/
setup.py
163 lines (149 loc) · 4.79 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#!/usr/bin/env python
"""
Institute for the Design of Advanced Energy Systems
"""
from pathlib import Path
import os
import sys
from setuptools import setup, find_namespace_packages
from typing import List, Tuple
def get_version():
code_file = os.path.join("idaes", "ver.py")
code = open(code_file).read()
local_namespace = {}
exec(code, {}, local_namespace)
return local_namespace["__version__"]
NAME = "idaes-pse"
VERSION = get_version()
README = open("README.md").read()
README = README[README.find("#") :] # ignore everything before title
class ExtraDependencies:
"""
A convenience shorthand to define and combine dependencies for ``extras_require``.
>>> extras = ExtraDependencies()
>>> extras["testing"]
['pytest', 'addheader', 'pyyaml']
>>> list(extras)
['ui', 'omlt', 'grid', 'coolprop', 'testing']
>>> dict(extras)
{'testing': ['pytest', 'addheader', 'pyyaml'], 'omlt': ['omlt==1.1', 'tensorflow', ...], ...}
"""
ui = [
# FIXME this must be changed to the PyPI distribution for the release
# "idaes-ui",
"idaes-ui @ git+https://github.com/IDAES/idaes-ui@main",
]
omlt = [
"omlt==1.1", # fix the version for now as package evolves
"tensorflow",
"onnx",
]
grid = [
"gridx-prescient>=2.2.1", # idaes.tests.prescient
]
coolprop = [
"coolprop", # idaes.generic_models.properties.general.coolprop
]
testing = [
"pytest",
"addheader",
"pyyaml",
]
def __init__(self):
self._data = dict(type(self).__dict__)
def keys(self):
for name, attr in self._data.items():
if not name.startswith("_") and isinstance(attr, list):
yield name
def __getitem__(self, key):
return self._data[key]
kwargs = dict(
zip_safe=False,
name=NAME,
version=VERSION,
packages=find_namespace_packages(
include=[
"idaes*",
]
),
# Put abstract (non-versioned) deps here.
# Concrete dependencies go in requirements[-dev].txt
install_requires=[
"pyomo >= 6.8.2",
"pint >= 0.24.1", # required to use Pyomo units. Pint 0.24.1 needed for Python 3.9 support
"networkx", # required to use Pyomo network
"numpy>=1,<3",
# pandas constraint added on 2023-08-30 b/c bug in v2.1
# see IDAES/idaes-pse#1253
"pandas!=2.1.0,<3",
"scipy",
"sympy", # idaes.core.util.expr_doc
"matplotlib",
"click>=8",
],
entry_points={
"console_scripts": [
"idaes = idaes.commands.base:command_base",
]
},
# Only installed if [<key>] is added to package name
extras_require=dict(ExtraDependencies()),
package_data={
# If any package contains these files, include them:
"": [
"*.template",
"*.json",
"*.yaml",
"*.svg",
"*.png",
"*.jpg",
"*.csv",
"*.ipynb",
"*.txt",
"*.js",
"*.css",
"*.html",
"*.json.gz",
"*.dat",
"*.h5",
"*.pb", # for Keras Surrogate folder
"*.data-00000-of-00001", # for Keras Surrogate folder
"*.index", # for Keras Surrogate folder
"*.trc",
"*.nl",
"*.keras", # idaes/core/surrogate/tests/data/keras_models
"*.onnx",
]
},
include_package_data=True,
maintainer="Keith Beattie",
maintainer_email="[email protected]",
url="https://idaes.org",
license="BSD ",
platforms=["any"],
description="IDAES Process Systems Engineering Framework",
long_description=README,
long_description_content_type="text/markdown",
keywords=[NAME, "energy systems", "chemical engineering", "process modeling"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
setup(**kwargs)