forked from julianbro/lymixture
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.23 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
[build-system]
requires = ["setuptools >= 61.0.0", "setuptools_scm >= 7.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lymixture"
description = "Package to model lymphatic spread sa mixture of HMMs as implemented in the `lymph-model` package."
authors = [{ name = "Julian Brönnimann" }]
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = [
"numpy",
"scipy",
"pandas",
# I think these packages should not be depedencies...
"emcee",
"lymph-model>=1.3.3",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest"]
docs = ["sphinx", "sphinx-book-theme", "sphinx-autodoc-typehints", "myst-nb"]
[tool.setuptools_scm]
write_to = "lymixture/_version.py"
local_scheme = "no-local-version"
[tool.setuptools]
packages = ["lymixture"]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "lymixture._version.version" }
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D409",
"D203",
"D213",
"B028",
"G004",
"PLR2004",
"ANN003",
"TD002",
"TD003",
"PLR0913",
"FIX002",
]
exclude = ["*.ipynb", "tests/*"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::pandas.errors.PerformanceWarning"
]