-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (50 loc) · 939 Bytes
/
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
[tool.poetry]
name = "qld_fuel_scraping"
version = "0.1.0"
description = ""
authors = ["gsajko <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.26.0"
pandas = "^1.3.1"
bs4 = "^0.0.1"
black = "^23.1.0"
[tool.poetry.dev-dependencies]
ruff = "^0.0.228"
mypy = "^0.782"
pytest = "^7.2.0"
pytest-cov = "^2.10.1"
codecov = "^2.1.9"
jupyter = "^1.0.0"
jupyter_contrib_nbextensions = "^0.5.1"
ipykernel = "^5.3.4"
jupyter_nbextensions_configurator = "^0.4.1"
tabulate = "^0.8.7"
seaborn = "^0.11.1"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-outs
| build
| dist
)/
'''
[tool.ruff]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001"
]