-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
60 lines (53 loc) · 1.52 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
[build-system]
requires = [
"setuptools>=69",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "CADET-Python"
dynamic = ["version"]
authors = [
{ name = "William Heymann", email = "[email protected]" },
{ name = "Samuel Leweke", email = "[email protected]" },
{ name = "Johannes Schmölder", email = "[email protected]" },
{ name = "Ronald Jäpel", email = "[email protected]" },
]
description = "CADET-Python is a Python interface to the CADET-Core simulator"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["process modeling", "process optimization", "chromatography"]
license = { text = "BSD-3-Clause" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
]
dependencies = [
"addict",
"numpy",
"h5py",
"filelock",
]
[project.optional-dependencies]
testing = [
"pytest",
"joblib"
]
[project.urls]
"homepage" = "https://github.com/cadet/CADET-Python"
"Bug Tracker" = "https://github.com/cadet/CADET-Python/issues"
[tool.setuptools.dynamic]
version = { attr = "cadet.__version__" }
[tool.setuptools.packages.find]
include = ["cadet*"]
[tool.ruff]
src = ["cadet"]
line-length = 88
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"local: marks tests as only useful on local installs (deselect with '-m \"not local\"')",
]