-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.67 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
[build-system]
requires = ["hatchling>=1.21.0", "hatch-vcs>=0.3.0"]
build-backend = "hatchling.build"
[project]
name = "mobilyze"
description = "A Python package designed to analyze mobility data and measure and visualize movement intensity."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
keywords = ["mobility"]
authors = [{ name = "Development Data Group", email = "datalab@worldbank.org" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"bokeh",
"dask_geopandas",
"dask",
"datashader",
"h3>=3,<4",
"holoviews",
"mobilkit>=0.2.8",
"numpy<2",
"palettable>=3.3.3",
"plotly",
"scikit-mobility>=1.3.1",
"shapely",
]
[project.optional-dependencies]
docs = [
"docutils==0.17.1", # https://jupyterbook.org/en/stable/content/citations.html?highlight=docutils#citations-and-bibliographies
"jupyter-book>=1,<2",
"sphinxcontrib-apidoc>=0.4.0,<1",
]
[project.urls]
"Homepage" = "https://github.com/datapartnership/mobilyze"
"Bug Reports" = "https://github.com/datapartnership/mobilyze/issues"
"Source" = "https://github.com/datapartnership/mobilyze"
[tool.codespell]
skip = 'docs/_build,docs/bibliography.bib,*.png,*.gz,*.whl'
ignore-regex = '^\s*"image\/png":\s.*'
ignore-words-list = "dec,"
[tool.hatch.build.targets.wheel]
packages = ["src/mobilyze"]
[tool.hatch.version]
source = "vcs"
[tool.ruff.lint.pydocstyle]
convention = "numpy"