-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 1.75 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
[tool.poetry]
name = "kaartmaker"
version = "0.1.5"
description = "world map making tool based on votes from locations such as the UN"
authors = ["Jesse Hitch <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
packages = [{include = "kaartmaker"}]
include = [
"./kaartmaker/datasets/UN_general_assembly/israel_ceasefire/world_palestine_votes.csv",
"./kaartmaker/datasets/UN_general_assembly/russia_ceasefire/world_ukraine_votes.csv",
"./kaartmaker/config/legend.json",
"./kaartmaker/config/boundaries.json",
"./kaartmaker/config/country_labels.json",
"./kaartmaker/geojson/world.geojson",
"./kaartmaker/geojson/world_subunits.geojson"
]
keywords = ["geopandas", "maps", "mapmaking", "kaartmaker", "UN"]
classifiers = ["Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)"]
[tool.poetry.urls]
"Bug Tracker" = "http://github.com/small-hack/kaartmaker/issues"
[tool.poetry.dependencies]
python = "^3.12"
numpy = "^1.26"
pandas = "^2.2"
seaborn = "^0.13"
geopandas = "^0.14"
matplotlib = "^3.8"
pyqt5-sip = "^12.11"
plotly = "^5.22"
click = "^8.1"
rich = "^13.7"
fake-useragent = "^1.5"
[tool.poetry.plugins."kaartmaker.application.plugin"]
"kaartmaker" = "kaartmaker:main"
[tool.poetry.scripts]
kaartmaker = "kaartmaker:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"