-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
80 lines (72 loc) · 1.9 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools>=69",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "CADET-Process"
dynamic = ["version"]
authors = [
{ name = "Johannes Schmölder", email = "[email protected]" },
]
description = "A Framework for Modelling and Optimizing Advanced Chromatographic Processes"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["process modeling", "process optimization", "chromatography"]
license = { text = "GPLv3" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
]
dependencies = [
"addict==2.3",
"cadet-python>=1.0.4",
"corner>=2.2.1",
"diskcache>=5.4.0",
"hopsy>=1.4.0",
"joblib>=1.3.0",
"numpy>=1.21",
"matplotlib>=3.4",
"numba>=0.55.1",
"pathos>=0.2.8",
"psutil>=5.9.8",
"pymoo>=0.6",
"scipy>=1.11",
]
[project.optional-dependencies]
testing = [
"certifi", # tries to prevent certificate problems on windows
"pytest",
"pre-commit", # system tests run pre-commit
"ax-platform >=0.3.5"
]
docs = [
"myst-nb>=0.17.1",
"numpydoc>=1.5.0",
"sphinx>=5.3.0",
"sphinxcontrib-bibtex>=2.5.0",
"sphinx_book_theme>=1.0.0",
"sphinx_copybutton>=0.5.1",
"sphinx-sitemap>=2.5.0",
]
ax = [
"ax-platform >=0.3.5"
]
[project.urls]
homepage = "https://github.com/fau-advanced-separations/CADET-Process"
documentation = "https://cadet-process.readthedocs.io"
"Bug Tracker" = "https://github.com/fau-advanced-separations/CADET-Process/issues"
[tool.setuptools.packages.find]
include = ["CADETProcess*", "examples*", "tests*"]
[tool.setuptools.dynamic]
version = { attr = "CADETProcess.__version__" }
[tool.ruff]
src = ["CADETProcess"]
line-length = 88
[tool.pytest.ini_options]
testpaths = [
"tests",
]