-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "lost"
version = "0.0.1"
description = "LoST Protocol Reimagined"
authors = [
{ name = "Jan Janak", email = "jan@janakj.org" }
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"flask",
"click",
"psycopg[binary]",
"psycopg[pool]",
"flask-cors",
"flask-marshmallow",
"pyproj",
"lxml",
"pygml",
"requests",
"osm2geojson",
"tabulate",
"scikit-image",
"pillow",
"jinja2"
]
[project.optional-dependencies]
dev = [
"mypy",
"types-flask-cors",
"types-lxml",
"types-requests"
]
[project.urls]
"Homepage" = "https://github.com/irtlab/lost"
"Bug Tracker" = "https://github.com/irtlab/lost/issues"
[project.scripts]
lost-model = "lost.model:cli"
lost-server = "lost.server:cli"
lost-resolver = "lost.resolver.cli:main"
lost-seeker = "lost.seeker:cli"
lost-publisher = "lost.publisher:cli"
[tool.setuptools]
packages = ["lost"]