-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
64 lines (58 loc) · 1.55 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
63
64
[tool.poetry]
name = "geo-activity-playground"
version = "0.31.0"
description = "Analysis of geo data activities like rides, runs or hikes."
authors = ["Martin Ueding <[email protected]>"]
license = "MIT"
[tool.poetry.scripts]
geo-activity-playground = "geo_activity_playground.__main__:main"
[tool.poetry.dependencies]
python = "^3.10,<3.13"
altair = "^5.1.2"
appdirs = "^1.4.4"
charset-normalizer = "^3.3.2"
coloredlogs = "^15.0.1"
fitdecode = "^0.10.0"
flask = "^3.0.0"
geojson = "^3.0.1"
gpxpy = "^1.5.0"
jinja2 = "^3.1.2"
matplotlib = "^3.6.3"
numpy = "^1.22.4"
pandas = "^2.2"
Pillow = "^10.3.0"
pyarrow = "^16.1.0"
python-dateutil = "^2.8.2"
requests = "^2.28.1"
scipy = "^1.8.1"
stravalib = "^2.0"
tcxreader = "^0.4.5"
tomli = { version = "^2.0.1", python = "<3.11" }
tqdm = "^4.64.0"
vegafusion = { version = "^1.4.3", extras = ["embed"] }
vegafusion-python-embed = "^1.4.3"
vl-convert-python = "^1.0.1"
xmltodict = "^0.13.0"
shapely = "^2.0.5"
[tool.poetry.group.dev.dependencies]
black = "^22.3.0"
mkdocs-material = "^9.4.1"
mypy = "^1.10.0"
pandas-stubs = "^2.2.2.240603"
py-spy = "^0.3.14"
pytest = "^7.1.2"
types-decorator = "^5.1.8.20240106"
types-paramiko = "^3.4.0.20240120"
types-pycurl = "^7.45.2.20240106"
types-pytz = "^2024.1.0.20240203"
types-pyyaml = "^6.0.12.12"
types-requests = "^2.31.0.20240125"
types-tqdm = "^4.66.0.20240417"
types-typed-ast = "^1.5.8.7"
types-xmltodict = "^0.13.0.3"
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
disable_error_code = "import-untyped"