-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (43 loc) · 1.21 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
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "scalenav"
version = "0.0.4"
authors = [
{ name="Ivann Schlosser", email="[email protected]" },
]
maintainers = [
{ name="Ivann Schlosser", email="[email protected]" },
]
description = "A package to project all sorts of data on the H3 grid and manipulate it at different spatial scales."
readme = "README.md"
dependencies = [
"numpy"
,"pandas"
,"pyarrow"
,"tqdm"
,"pypalettes"
,"rasterio"
,"shapely"
,"geopandas"
,'h3==4.0.0b3'
]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {text = "MIT License"}
keywords = ['hierarchical index','rescaling','geospatial']
[project.urls]
Homepage = "https://github.com/nismod/scale-nav"
Issues = "https://github.com/nismod/scale-nav/issues"
Documentation = "https://nismod.github.io/scale-nav/"
[project.scripts]
rastapar = "scalenav.rast_convert_par:rast_converter"
[project.gui-scripts]
rastapar = "scalenav.rast_convert_par:rast_converter"
[tool.flit.external-data]
directory = "data"