forked from geoadmin/routing-graph-packager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (51 loc) · 1.23 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
[tool.poetry]
name = "routing-graph-packager"
version = "1.0.0b"
description = "Backend to generate packages of routing graphs for FOSS routing engines in a job queue."
authors = ["Nils Nolde <[email protected]>"]
license = "MIT"
packages = [
{ include = "routing_packager_app" }
]
[tool.poetry.dependencies]
python = "^3.8"
flask = "^2.1.1"
flask-sqlalchemy = "^2.5.1"
SQLAlchemy = "^1.4.34"
flask-cors = "^3.0.8"
GeoAlchemy2 = "^0.11.1"
wheel = "^0.37.1"
python-dotenv = "^0.20.0"
requests = "^2.27.1"
sqlalchemy-utils = "^0.38.2"
passlib = "^1.7.4"
Flask-HTTPAuth = "^4.5.0"
shapely = "^1.8.1"
docker = "^5.0.3"
gunicorn = "^20.1.0"
gevent = "^21.12.0"
rq = "^1.10.1"
osmium = "^3.3.0"
pyproj = "^3.3.0"
psycopg2-binary = "^2.9.3"
# wait for release of bug fix: https://github.com/python-restx/flask-restx/pull/423
flask-restx = {git = "https://github.com/stacywsmith/flask-restx.git", rev = "bugfix/handle_werkzeug_request_get_json_change"}
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pre-commit = "^2.17.0"
coverage = "^6.3.2"
coveralls = "^3.3.1"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 105
exclude = '''
/(
\.git
| \.venv
| dist
| build
)/
'''