forked from loggi/loggibud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 845 Bytes
/
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
[tool.poetry]
name = "loggibud"
version = "0.1.0"
description = "Real-world benchmarks for urban delivery problems, including vehicle routing and facility location problems."
authors = ["Gabriela Surita <[email protected]>", "Fillipe Goulart <[email protected]>", "Juan Camilo <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.7"
numpy = ">=1.19.2,<1.20.0"
requests = "^2.25.1"
dacite = "^1.6.0"
tqdm = "^4.60.0"
ortools = "9.0.*"
sklearn = "^0.0"
Shapely = "^1.7.1"
geopandas = "^0.9.0"
folium = "^0.12.1"
polyline = "^1.4.0"
lkh = "^1.0.4"
tsplib95 = "^0.7.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.3"
mock = "^4.0.3"
ipdb = "^0.13.7"
flake8 = "^3.9.0"
black = "^21.4b0"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"