-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "slicks"
version = "0.2.3"
description = "The home baked data pipeline for Western Formula Racing"
readme = "README.md"
authors = [
{ name = "Western Formula Racing", email = "fsae.uwo@gmail.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
dependencies = [
"pandas>=2.0.0",
"psycopg2-binary>=2.9.0",
"cantools>=39.0.0",
"python-dotenv>=1.0.0",
"matplotlib>=3.0.0",
"tqdm>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"interrogate>=1.5.0",
]
[project.urls]
"Homepage" = "https://github.com/Western-Formula-Racing/wfr-telemetry"
"Documentation" = "https://western-formula-racing.github.io/wfr-telemetry/"
"Bug Tracker" = "https://github.com/Western-Formula-Racing/wfr-telemetry/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=slicks --cov-report=xml --cov-report=html --cov-report=term-missing"
[tool.coverage.run]
source = ["src/slicks"]
branch = true
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "if __name__ == .__main__.:"]
fail_under = 20
[tool.interrogate]
ignore-init-method = true
ignore-init-module = true
fail-under = 70
exclude = ["tests", "setup.py"]
verbose = 1
color = true
generate-badge = "."
badge-format = "svg"