-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.34 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "sbmlmath"
dynamic = ["version"]
authors = [
{name = "Daniel Weindl", email = "sci@danielweindl.de"},
]
description = "SBML Math <-> SymPy"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "BSD-3-Clause"}
dependencies = [
"python-libsbml>=5.20.4",
"sympy",
"pint",
"lxml>=4.6.4",
]
[project.urls]
Homepage = "https://github.com/dweindl/sbmlmath"
Documentation = "https://sbmlmath.readthedocs.io/"
Repository = "https://github.com/dweindl/sbmlmath.git"
"Bug Tracker" = "https://github.com/dweindl/sbmlmath/issues"
PyPI = "https://pypi.org/project/sbmlmath/"
[project.optional-dependencies]
test = ["pytest>=7", "pre-commit>=3"]
[tool.setuptools_scm]
[tool.ruff]
line-length = 79
exclude = ["sbml-test-suite"]
lint.extend-select = [
"T", "W", "E", "F", "B", "C", "S", "I", "UP",
# "D",
# "ANN",
]
lint.ignore = [
"S101", # Use of assert detected
"F405", # star import
"F403", # star import
"E501", # Line too long
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["T201"] # print statement
"sbmlmath/__init__.py" = [
"F401", # module imported but unused
"E402", # import not at top of file
]
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=doc/conf.py"