-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
83 lines (73 loc) · 1.77 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=67.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sym_metanet"
authors = [
{ name="Filippo Airaldi", email="filippoairaldi@gmail.com" },
]
description = "Symbolic Modelling of Highway Traffic Networks with METANET"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
dependencies = [
"networkx >= 2.8.4",
]
keywords = [
"modelling-framework",
"highway-network",
"highway-traffic",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/FilippoAiraldi/sym-metanet"
"Bug Tracker" = "https://github.com/FilippoAiraldi/sym-metanet/issues"
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
version = {attr = "sym_metanet.__version__"}
[tool.black]
target-version = ["py39", "py310", "py311"]
color = true
[tool.isort]
profile = "black"
py_version = 39
[tool.mypy]
python_version = "3.9"
plugins = ["numpy.typing.mypy_plugin"]
exclude = ["tests"]
[[tool.mypy.overrides]]
module = [
"networkx.*",
"matplotlib.*",
"casadi.*",
"csnlp.*",
"sym_metanet.*",
]
ignore_missing_imports = true
[tool.coverage.run]
branch = true
omit = [
"tests/*",
"examples/*",
]
[tool.coverage.report]
exclude_also = [
"def __repr__",
"def __str__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"@(abc\\.)?abstractmethod",
]
sort = "miss"