-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 864 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 864 Bytes
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
[build-system]
requires = [
"setuptools >= 64",
"setuptools_scm >= 7",
]
build-backend = "setuptools.build_meta"
[project]
name = "idaes-flowsheet-processor"
readme = "README.md"
dynamic = ["version"]
dependencies = [
"pydantic >= 2, <3",
"pyomo",
"plotly >= 6.1.1",
"pandas >= 2.2.3",
"numpy >= 2",
"IPython"
]
[project.optional-dependencies]
testing = [
"pytest >= 8",
"idaes-pse",
# watertap.flowsheets currently required to be able to run tests
# requirements in pyproject.toml cannot use git+https://... URLs
# or PyPI upload will fail
"watertap",
]
[project.entry-points.pytest11]
idaes-flowsheets = "idaes_flowsheet_processor._testing.plugins:plugin"
[tool.setuptools_scm]
# https://setuptools-scm.readthedocs.io/en/v8.1.0/extending/
version_scheme = "only-version"
local_scheme = "node-and-date"