-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.46 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
[project]
name = "in_silico_cancer_cell"
description = "Simulation of an electrophysiological A549 cancer cell model using individual ion channels across the membrane"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[project.urls]
homepage = "https://in-silico-cancer-cell.waldert.at/"
repository = "https://github.com/MrP01/InSilicoCancerCell"
# documentation = "readthedocs.org"
# changelog = "github.com/me/spam/blob/master/CHANGELOG.md"
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"
module-name = "in_silico_cancer_cell._in_rusty_silico"
features = ["pyo3/extension-module"]
[tool.poetry]
name = "in_silico_cancer_cell"
version = "0.2.3"
description = "Electrophysiological model of an A549 cancer cell"
authors = ["MrP01 <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
matplotlib = "^3.10.0"
numpy = "^2.2.0"
clarabel = "^0.9.0"
[tool.poetry.group.dev.dependencies]
ipython = "^8.30.0"
pytest = "^8.3.4"
scipy = "^1.14.1"
invoke = "^2.2.0"
[tool.ruff]
line-length = 120
[tool.nitpick]
style = [
"github://MrP01/lint-me-now/nitpick-base-style.toml",
"github://MrP01/lint-me-now/nitpick-rust-style.toml",
"github://MrP01/lint-me-now/nitpick-python-style.toml",
]
cache = "never"