-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (80 loc) · 2.46 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Build
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["multimno*"]
# Project metadata
[project]
name = "multimno"
version = "0.5.1"
description = "Big data pipeline software for mobility and sociodemographic analysis from MNO Data."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Juan Arranz", email = "[email protected]" },
{ name = "Oliver Bollverk", email = "[email protected]" },
{ name = "Miguel Picornell", email = "[email protected]" },
{ name = "Pablo Ruiz", email = "[email protected]" },
{ name = "Sergio Teso", email = "[email protected]" },
{ name = "Kaarel Tonisson", email = "[email protected]" },
{ name = "Villem Tonisson", email = "[email protected]" },
{ name = "Ivan Vasilyev", email = "[email protected]" },
]
classifiers = ["Programming Language :: Python"]
requires-python = ">= 3.9"
dependencies = [
# ------ Project ------
"numpy~=1.26", # 1.X version due to pyspark.testing(v3.5.1) needing numpy < 2.X
"pandas>=2.0,<2.3",
"pyarrow~=17.0",
"requests~=2.31",
"toml~=0.10",
# ------ sedona ------
"apache-sedona==1.6.1",
"geopandas~=0.11", # Due to numpy 1.X versioning
"shapely~=1.8", # Due to numpy 1.X versioning
]
[project.scripts]
multimno = "multimno.main_multimno:main"
orchestrator_multimno = "multimno.orchestrator_multimno:main"
# Optional dependencies
[project.optional-dependencies]
spark = [
"pyspark==3.5.1",
"py4j>=0.10.9.7",
"grpcio>=1.48,<1.57",
"grpcio-status>=1.48,<1.57",
"googleapis-common-protos==1.56.4",
]
dev = [
# Build deps
"build~=1.2",
# Test
"pytest~=8.0",
"pytest-cov~=4.1",
"pytest-html~=4.1",
# Visualization
"keplergl~=0.3",
"jupyterlab>=3.6.3,<4.0.0",
"pydeck~=0.8",
"matplotlib~=3.8",
"folium~=0.16",
"mapclassify~=2.6",
# Security
"bandit==1.7.*",
# Docs
"black==24.2.*",
"mkdocs~=1.5",
"mkdocs-material~=9.5",
"mkdocs-gen-files~=0.5",
"mkdocs-literate-nav~=0.6",
"mkdocs-section-index~=0.3",
"mkdocs-nav-weight~=0.2",
"mkdocstrings-python~=1.8",
"mike~=2.0",
]
[project.urls]
GitHub = "https://github.com/eurostat/multimno"
Documentation = "https://eurostat.github.io/multimno/latest"