-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
46 lines (43 loc) · 1.03 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
[tool.poetry]
name = "f1pystats"
version = "0.1.1"
description = "F1PyStats is an open-source Python3 package that provides Formula 1 data/statistics to developers"
authors = [
"Alec Ramdhan <[email protected]>",
"Gaurav Kolekar <[email protected]>",
]
license = "GPL-3.0"
readme = "README.md"
packages = [
{ include = "f1pystats" },
]
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.28.1"
pandas = "^2.0.0"
[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
coverage = "^6.4.4"
pytest = "^7.2.0"
nox = "^2022.11.21"
mypy = "^1.0"
black = "^24.3.0"
flake8 = "^5.0.4"
pytest-mock = "^3.8.2"
nox-poetry = "^1.0.1"
flake8-black = "^0.3.3"
flake8-import-order = "^0.18.1"
flake8-bugbear = "^22.9.23"
flake8-annotations = "^2.9.1"
flake8-docstrings = "^1.6.0"
darglint = "^1.8.1"
Sphinx = "^6.1.3"
sphinx-autodoc-typehints = "^1.22.0"
pytest-cov = "^4.0.0"
pylint = "^3.0.1"
furo = "^2023.3.27"
toml = "^0.10.2"
bump2version = "^1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"