-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (54 loc) · 1.49 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0.0", "wheel"]
[project]
name = "transport_performance"
authors = [
{name = "Data Science Campus", email = "[email protected]"}
]
description = "Measuring the performance of transport networks around urban centres"
readme = "README.md"
classifiers = [
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.9, <3.10"
version = "0.0.1"
[tool.setuptools]
# This is true by default so this can be removed.
# Currently retaining this line before discussing with others whether or not
# we want to keep it for more clarity.
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
Repository = "https://github.com/datasciencecampus/transport-network-performance"
"Bug tracker" = "https://github.com/datasciencecampus/transport-network-performance/issues"
# `coverage` configurations
[tool.coverage.run]
source = [
"./src"
]
omit = ["**/__init__.py"]
[tool.coverage.report]
exclude_lines = [
"if __name__ == .__main__.:"
]
# `isort` configurations
[tool.isort]
profile = "black"
skip_glob = ["notebooks/*"]
line_length = 79
# `pytest` configurations
[tool.pytest.ini_options]
addopts = [
"-vv",
"--doctest-modules"
]
doctest_optionflags = "NORMALIZE_WHITESPACE"
testpaths = [
"./tests"
]