-
Notifications
You must be signed in to change notification settings - Fork 62
/
setup.py
123 lines (118 loc) · 4.62 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
#################################################################################
# WaterTAP Copyright (c) 2020-2024, The Regents of the University of California,
# through Lawrence Berkeley National Laboratory, Oak Ridge National Laboratory,
# National Renewable Energy Laboratory, and National Energy Technology
# Laboratory (subject to receipt of any required approvals from the U.S. Dept.
# of Energy). All rights reserved.
#
# Please see the files COPYRIGHT.md and LICENSE.md for full copyright and license
# information, respectively. These files are also available online at the URL
# "https://github.com/watertap-org/watertap/"
#################################################################################
"""
Project setup with setuptools
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from pathlib import Path
cwd = Path(__file__).parent
long_description = (cwd / "README.md").read_text()
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
setup(
name="watertap",
url="https://github.com/watertap-org/watertap",
version="1.3.dev0",
description="WaterTAP modeling library",
long_description=long_description,
long_description_content_type="text/markdown",
author="NAWI team",
license="BSD",
# Classifiers help users find your project by categorizing it.
#
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"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 :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
],
keywords="water systems, chemical engineering, process modeling, filtration, desalination, nawi",
# just include watertap and everything under it
packages=find_packages(
include=("watertap*",),
),
python_requires=">=3.9",
install_requires=[
# primary requirements for unit and property models
"idaes-pse >=2.7.0,<2.8.0rc0",
"pyomo>=6.6.1",
"watertap-solvers",
"pyyaml", # watertap.core.wt_database
# for parameter_sweep
"parameter-sweep >=0.1.0",
"numpy",
],
extras_require={
"testing": [
"pytest",
"pandas",
# treebeardtech/nbmake#121
"nbmake != 1.5.1",
"nbconvert",
"idaes-flowsheet-processor >=0.1.dev4",
],
"notebooks": [
"jupyter",
"ipykernel",
],
"oli_api": [
"requests",
"cryptography", # for encrypting OLI credentials
],
},
package_data={ # Optional
"": [
"*.json",
"*.yaml",
"*.yml",
"*.csv",
"*.png",
],
"watertap.tools.oli_api.tests": [
"test.dbs",
],
},
entry_points={
"watertap.flowsheets": [
"nf = watertap.flowsheets.nf_dspmde.nf_ui",
"bsm2 = watertap.flowsheets.full_water_resource_recovery_facility.BSM2_ui",
"bsm2_P_extension = watertap.flowsheets.full_water_resource_recovery_facility.BSM2_P_extension_ui",
"dye_desalination = watertap.flowsheets.dye_desalination.dye_desalination_ui",
"mvc = watertap.flowsheets.mvc.mvc_single_stage_ui",
"RO = watertap.flowsheets.RO_with_energy_recovery.RO_with_energy_recovery_ui",
"OARO = watertap.flowsheets.oaro.oaro_multi_ui",
"GAC = watertap.flowsheets.gac.gac_ui",
"ED_conc_recirc = watertap.flowsheets.electrodialysis.electrodialysis_1stack_conc_recirc_ui",
"LSRRO = watertap.flowsheets.lsrro.lsrro_ui",
"generic desal train = watertap.flowsheets.generic_desalination_train.generic_train_ui",
],
},
)