-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 851 Bytes
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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4", "wheel"]
[project]
authors = [{ name = "Guillaume Latour", email = "guillaume.latour@macq.eu" }]
dependencies = [
'click',
'pytz',
'requests',
'shapely',
'dataclass-wizard',
'pandas',
'pyarrow',
'tabulate',
'geojson',
]
description = "API client allowing to interact with the tomtom REST services."
maintainers = [
{ name = "Guillaume Latour", email = "guillaume.latour@macq.eu" },
]
name = "tomtom_api"
readme = "readme.md"
requires-python = ">=3.8"
version = "2024.12.5"
[project.urls]
repository = "https://stash.macq.eu/projects/RDDS/repos/tomtom-api"
[project.optional-dependencies]
dev = ['ruff', 'pytest']
pyproj = ['pyproj']
[project.scripts]
tomtom-daemon = "tomtom_api.priority_queue.cli:daemon"
tomtom-api = "tomtom_api:__main__"