-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (70 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (70 loc) · 1.76 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
80
[build-system]
requires = [
"scikit-build-core>=0.10,<0.12",
"nanobind>=2.7,<3",
]
build-backend = "scikit_build_core.build"
[project]
name = "microsimulator"
version = "0.1.0"
description = "Microfluidic simulation of microbial populations, flow, and solute transport"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12,<3.13"
authors = [{ name = "DRAGGON Lab" }]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: C++",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=2.1,<3",
"rfc8785>=0.1.4,<0.2",
]
[project.urls]
Repository = "https://github.com/DRAGGON-Lab/MicroSimulator"
Issues = "https://github.com/DRAGGON-Lab/MicroSimulator/issues"
[project.optional-dependencies]
analysis = [
"polars>=1.43,<2",
"pyarrow>=25,<26",
"zarr>=3.2.1,<4",
]
sbml = [
"python-libsbml>=5.21.1,<6",
]
viewer = [
"aiohttp>=3.14.3,<4",
]
[project.scripts]
microsimulator = "microsimulator.cli:main"
[dependency-groups]
dev = [
"aiohttp>=3.14.3,<4",
"polars>=1.43,<2",
"pyarrow>=25,<26",
"pytest>=8.3,<9",
"pyright>=1.1.390,<2",
"python-libsbml>=5.21.1,<6",
"ruff>=0.9,<1",
"zarr>=3.2.1,<4",
]
[tool.scikit-build]
cmake.build-type = "Release"
wheel.packages = ["python/src/microsimulator"]
build-dir = "build/python/{wheel_tag}"
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers"
testpaths = ["python/tests"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["B", "E", "F", "I", "N", "RUF", "SIM", "UP"]
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "strict"
include = ["python/src", "python/tests"]
exclude = ["python/tests/fixtures"]