-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (68 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (68 loc) · 1.86 KB
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "idaes-fi"
version = "0.1.0"
description = "Library modules and API for the Flowsheet Inspector user interface."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE.md" }
authors = [
{ name = "PrOMMiS contributors" },
]
keywords = ["idaes", "prommis", "flowsheet", "process-modeling"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"idaes-pse @ git+https://github.com/IDAES/idaes-pse@main",
"pyomo >=6.9.5",
]
[project.optional-dependencies]
dev = [
"mypy>=1.10",
"sphinx>=9",
"jupyter-book>=2.0.0",
"sphinx-autodoc2>=0.5",
"sphinxcontrib-napoleon>=0.5.0",
"sphinx-argparse==0.5.2",
"sphinx-book-theme<=1.1.2,>=1.0.0",
"sphinx-copybutton==0.5.2",
"nbsphinx", # for Jupyter Notebooks in the docs
"pytest>=8",
"pytest-cov",
"black>=26",
]
[tool.setuptools]
package-dir = {"" = "src"}
[project.scripts]
fi-copy = "idaes_fi.scripts.copy_template:main"
fi-run = "idaes_fi.structfs.fsrunner:main"
fi-steps = "idaes_fi.structfs.common:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
idaes_fi = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["src"]
pythonpath = ["src"]
markers = [
"unit: marks tests as unit tests",
"component: marks tests as component tests",
"integration: marks tests as integration tests",
]
[tool.mypy]
python_version = "3.10"
files = ["src"]
mypy_path = "src"
strict = true
warn_unused_configs = true
show_error_codes = true