forked from IDAES/idaes-pse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
168 lines (152 loc) · 5.24 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
164
165
166
167
168
#!/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 warn(s):
sys.stderr.write("*** WARNING *** {}\n".format(s))
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
def rglob(path, glob):
"""Return list of paths from `path` matching `glob`."""
p = Path(path)
return list(map(str, p.rglob(glob)))
DEPENDENCIES_FOR_PRERELEASE_VERSION = []
# For included DMF data
DMF_DATA_ROOT = "data"
def dmf_data_files(root: str = DMF_DATA_ROOT) -> List[Tuple[str, List[str]]]:
"""Generate a list of pairs (directory, [files..]), covering all the DMF data
files, for the `data_files` option to :func:`setup()`.
"""
file_list = [
(
root,
[f"{root}/config.yaml", f"{root}/resourcedb.json"],
)
]
files_root = Path(root) / "files"
for files_subdir in files_root.glob("*"):
file_names = [f.as_posix() for f in files_subdir.glob("*")]
if file_names: # empty for non-directories and empty directories
file_list.append((files_subdir.as_posix(), file_names))
return file_list
kwargs = dict(
zip_safe=False,
name=NAME,
version=VERSION,
packages=find_namespace_packages(),
# Put abstract (non-versioned) deps here.
# Concrete dependencies go in requirements[-dev].txt
install_requires=[
# idaes core / dmf
"click>=8",
"colorama",
"jupyter",
"lxml",
"matplotlib",
"nbconvert",
"nbformat",
"numpy",
"omlt==1.1", # fix the version for now as package evolves
"pandas",
"pyomo @ https://github.com/IDAES/pyomo/archive/6.5.1.idaes.2023.03.28.zip",
"sympy", # pyomo differentiation
"pint", # pyomo units
"networkx", # pyomo network
"pytest",
"pyyaml",
"requests", # for ui/fsvis
"scipy",
"tinydb",
"xlrd", # for DMF read of old .xls Excel files
"openpyxl", # for DMF read of new .xls Excel files
'ipython <= 8.12; python_version == "3.8"',
],
entry_points={
"console_scripts": [
"dmf = idaes.dmf.cli:base_command",
"idaes = idaes.commands.base:command_base",
]
},
# Only installed if [<key>] is added to package name
extras_require={
"prerelease": DEPENDENCIES_FOR_PRERELEASE_VERSION,
"optional": [
"sympy", # idaes.core.util.expr_doc
"tensorflow", # idaes.core.surrogate.keras_surrogate
"gridx-prescient>=2.2.2", # idaes.tests.prescient
# A Lee 11-Jan-22: no precompiled version of CoolProp available for Python 3.9
"coolprop; python_version < '3.9'", # idaes.generic_models.properties.general.coolprop
],
},
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",
"*.xlsx", # idaes/dmf/tests/data_files - tabular import test files
"*.nl",
]
},
include_package_data=True,
data_files=dmf_data_files(),
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
setup(**kwargs)