forked from teamdigitale/confini-amministrativi-istat
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (41 loc) · 1.01 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
[tool.poetry]
name = "confini-amministrativi-istat"
version = "1.0.0"
description = "Collezione di utilities per facilitare il riuso dei dati [ISTAT](https://www.istat.it/it/archivio/222527) e [ANPR](https://www.anpr.interno.it/) sui confini amministrativi italiani."
authors = ["Alessio Cimarelli <alessio.cimarelli@sparkfabrik.com>"]
license = "AGPL"
readme = "README.md"
packages = [{include = "confini_amministrativi_istat"}]
[tool.poetry.dependencies]
python = "^3.11"
geopandas = "^0.13.2"
topojson = "^1.6"
pandas = "^2.1.0"
pybind11-geobuf = "^0.1.6"
pyarrow = "^13.0.0"
dbfread = "^2.0.7"
jinja2 = "^3.1.2"
svgis = {extras = ["simplify"], version = "^0.5.3"}
cairosvg = "^2.7.1"
jsonschema = "^4.22.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"