-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (57 loc) · 1.22 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
59
60
61
62
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "lmr_analyzer"
authors = [{name = "Guilherme Fernandes Alves", email = "[email protected]"}]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dynamic = ["version", "description"]
keywords = [
"python",
"routing",
"spatial",
"urban-planning",
"networkx",
"vehicle-routing-problem",
"network-analysis",
"logistics",
"street-networks",
"osmnx",
"last-mile",
]
dependencies = [
"cloudpickle>=2.2.0",
"ipython>=8.8.0",
"matplotlib>=3.6.2",
"networkx>=2.8.8",
"numpy>=1.24.1",
"osmnx>=1.3.0",
"pandas>=1.5.2",
"pytz>=2022.7",
"requests>=2.28.1",
"scipy>=1.10.0",
"shapely>=2.0.0",
]
[project.optional-dependencies]
tests = [
"pytest>=7.2.0",
"pytest-coverage",
"black>=22.12.0",
]
notebooks = [
"boto3>=1.26.154",
"ipywidgets>=7.6.5",
"notebook>=6.4.6",
]
[project.urls]
Home = "https://github.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer"
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
target-version = ['py310']