-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (46 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
56 lines (46 loc) · 1.18 KB
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
[tool.poetry]
name = "logicway"
version = "0.1.0"
description = "An app for searching best way to your destination point"
authors = ["LogicWayTeam <nikolajvojna53@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
django = "==5.2.1"
whitenoise = "^6.9.0"
django-cors-headers = "^4.7.0"
gunicorn = "^23.0.0"
exceptiongroup = "==1.3.0"
click = "==8.2.0"
greenlet = "==3.2.2"
django-prometheus = "^2.3.1"
envsh = "^0.1.1"
[tool.poetry.group.logicway.dependencies]
sqlalchemy = "^2.0.40"
selenium = "^4.31.0"
webdriver-manager = "^4.0.2"
psycopg2-binary = "^2.9.10"
alembic = "^1.15.2"
pandas = "^2.2.3"
tqdm = "^4.67.1"
flask = "^3.1.0"
gitpython = "^3.1.44"
networkx = "^3.4.2"
[tool.poetry.group.route_engine.dependencies]
routingpy = "^1.3.0"
geopy = "^2.4.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pytest-django = "^4.11.1"
ruff = "^0.12.9"
pytest-html = "^4.1.1"
[tool.ruff]
line-length = 120
ignore = [
"F403", # Star imports (Django settings pattern)
"F405", # Variables from star imports
"F401", # Unused imports in test files and __init__.py
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"