-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (43 loc) · 1.07 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chaste_codegen_sbml"
version = "0.0.1"
description = "Chaste C++ code generation from SBML"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Kwabena Amponsah" }, { name = "James Osborne" }]
requires-python = ">=3.9"
dependencies = ["Jinja2 >=3.0,<4", "python-libsbml >=5.20,<6"]
[project.optional-dependencies]
dev = [
"flake8",
"flake8-bugbear",
"isort",
"Jinja2>=3.1",
"pytest",
"python-libsbml>=5.20",
]
[project.scripts]
chaste_codegen_sbml = "chaste_codegen_sbml.__main__:main"
[project.urls]
source = "https://github.com/Chaste/chaste-codegen-sbml"
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311", "py312", "py313"]
extend-exclude = """
(
^/venv/
)
"""
[tool.isort]
known_first_party = "chaste_codegen_sbml"
extend_skip = ["venv"]
profile = "black"
multi_line_output = 3
include_trailing_comma = "True"
force_grid_wrap = 0
use_parentheses = "True"
ensure_newline_before_comments = "True"
line_length = 100