-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (33 loc) · 899 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
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "heatmapx"
# A placeholder version. The actual version is managed by the
# poetry-dynamic-versioning Poetry plugin.
version = "0.0.0"
description = "Flexible, intuitive heatmap creation on NetworkX graphs"
authors = ["drmrd"]
license = "BSD-3-Clause"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
networkx = "^2.6.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^6.2.5"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
gitpython = "^3.1.29"
ipython = "^7.11.1"
jupyter = "^1.0.0"
jupyterlab = "^3.5.2"
geocoder = "^1.38.1"
matplotlib = "^3.1.0"
osmnx = "^1.2.3"
scikit-learn = "^1.2.0"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"