-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.09 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
[tool.poetry]
name = "cycling-analysis"
version = "0.1.0"
description = ""
authors = ["ajms <albert.schulz@posteo.de>"]
license = "GPL3"
readme = "README.md"
packages = [{ include = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
folium = "^0.14.0"
gpxpy = "^1.5.0"
tqdm = "^4.65.0"
pandas = "^1.5.3"
pandasql = "^0.7.3"
sqlalchemy = "1.4.47"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
pre-commit-hooks = "^4.4.0"
pre-commit = "^3.1.1"
jupyter = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-ra -q --doctest-modules"
minversion = "7.2.1"
testpaths = ["tests", "src"]
[tool.black]
exclude = '''
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| _build
| buck-out
| build
| dist
)/
'''
include = '\.pyi?$'
line-length = 88
[tool.isort]
include_trailing_comma = true
line_length = 88
multi_line_output = 3
profile = "black"
skip_gitignore = true