-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (103 loc) · 2.71 KB
/
pyproject.toml
File metadata and controls
110 lines (103 loc) · 2.71 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "deafrica-tools"
# reflect version changes in deafrica_tools/__init__.py
version = "2.5.14"
description = "Functions and algorithms for analysing Digital Earth Africa data."
authors = [{name = "Digital Earth Africa", email = "systems@digitalearthafrica.org"}]
maintainers = [{name = "Digital Earth Africa", email = "systems@digitalearthafrica.org"}]
readme = {file = "README.md", content-type = "text/markdown"}
# If you change the License, remember to change the Trove Classifier!
license = {file = "LICENSE"}
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: GIS',
]
requires-python = ">=3.9"
dependencies= [
"aiohttp",
"aiobotocore[boto3]", # for boto3
"branca",
"dask[complete]",
"dask-ml",
"dask-gateway",
"datacube[performance,s3]",
"eo-tides",
"fiona",
"folium",
"fsspec",
"gdal",
"geojson",
"geopandas",
"geopy",
"hdstats",
"ipyleaflet",
"ipython",
"ipywidgets",
"joblib",
"localtileserver==0.10.3",
"rio-tiler==6.7.0",
"matplotlib",
"numexpr",
"numpy",
"odc-algo",
"odc-geo>=0.4.2",
"odc-ui",
"OWSLib",
"packaging",
"pandas",
"plotly",
"pydrive2[fsspec]", # for externaldrive
"pyproj",
"pystac-client", # for pystac
"python-dateutil",
"pytz",
"rasterio",
"rasterstats",
"requests",
"rioxarray",
"scikit-image",
"scikit-learn",
"scipy",
"seaborn",
"shapely",
"timescale",
"tqdm",
"xarray",
"gcsfs",
]
[project.optional-dependencies]
tests = [
"pytest",
]
lint = [
"black[jupyter]",
"flake8",
"isort>=5.0.0",
"pre-commit",
]
dev = [
"deafrica_tools[tests, lint]",
]
[project.urls]
Homepage = "https://github.com/digitalearthafrica/deafrica-sandbox-notebooks"
Repository = "https://github.com/digitalearthafrica/deafrica-sandbox-notebooks"
Documentation = "https://docs.digitalearthafrica.org/en/latest/sandbox/notebooks/Tools/index.html"
"Bug Tracker" = "https://github.com/digitalearthafrica/deafrica-sandbox-notebooks/issues"
[tool.setuptools]
packages = ["deafrica_tools"]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"