-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (49 loc) · 1.43 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
[tool.poetry]
name = "french-cities"
version = "1.0.2"
description = "Toolbox on french cities: set vintage, find departments, find cities..."
authors = ["thomas.grandjean <[email protected]>"]
license = "GPL-3.0-or-later"
readme = ["README.md"]
homepage = "https://github.com/tgrandje/french-cities/"
repository = "https://github.com/tgrandje/french-cities/"
documentation = "https://tgrandje.github.io/french-cities/"
keywords = ["france", "cities"]
packages = [{include = "french_cities"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tgrandje/french-cities/issues"
[tool.poetry.dependencies]
python = "^3.9"
requests-cache = "^1.2.1"
unidecode = "^1.3.6"
python-dotenv = "^1.0.0"
pandas = "^2.2.2"
geopandas = "^1.0.1"
rapidfuzz = "^3.1.1"
pynsee = "0.1.7"
pebble = "^5.0.3"
tqdm = "^4.65.0"
importlib-metadata = "^6.8.0"
geopy = "^2.3.0"
diskcache = "^5.6.3"
platformdirs = "^4.2.2"
[tool.poetry.group.dev.dependencies]
spyder = "^5.5.5"
pytest = "^7.4.0"
licensecheck = "^2024.2"
pyqt5-qt5 = "5.15.2"
pyqtwebengine-qt5 = "5.15.2"
lxml = "^5.2.2"
openpyxl = "^3.1.4"
spyder-notebook = "^0.5.1"
matplotlib = "^3.9.0"
seaborn = "^0.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"