-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.13 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "benchmark_models_petab"
description = "A collection of models with experimental data in the PEtab format"
dynamic = ["version"]
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = { file = "LICENSE" }
maintainers = [
{ name = "Dilan Pathirana"},
{ name = "Maren Philipps"}
]
authors = [
{ name = "The Benchmark-Models-PEtab contributors" }
]
urls = { "Homepage" = "https://github.com/Benchmarking-Initiative/Benchmark-Models-PEtab" }
dependencies = [
"petab>=0.4.0",
"numpy",
"pandas",
"python-libsbml",
"tabulate",
"sbmlmath",
]
[project.optional-dependencies]
dev = ["pre-commit", "pytest", "ruff"]
[project.scripts]
bmp-petablint = "benchmark_models_petab.check_petablint:main"
bmp-check-sbml-metadata = "benchmark_models_petab.check_sbml_metadata:main"
bmp-create-overview = "benchmark_models_petab.overview:main"
[tool.setuptools_scm]
root = "../.."
[tool.ruff]
line-length = 79
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]