forked from nghiadang0312/CSIROBoeingPhase4-Vietnam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
103 lines (98 loc) · 2.8 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "deafrica-tools"
version = "2.1.2"
description = "Functions and algorithms for analysing Digital Earth Africa data."
authors = [{name = "Digital Earth Africa", email = "[email protected]"}]
maintainers = [{name = "Digital Earth Africa", email = "[email protected]"}]
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,<3.12"
dependencies= [
# Version constraints should match those in
# https://github.com/digitalearthafrica/deafrica-sandbox/blob/main/docker/requirements.in
"aiohttp",
"aiobotocore[boto3]", # for boto3
"branca",
"dask[complete]",
"dask-ml",
"dask-gateway",
"datacube[performance,s3]",
"fiona",
"folium",
"fsspec",
"gdal",
"geojson",
"geopandas",
"geopy",
"hdstats",
"ipyleaflet",
"ipython",
"ipywidgets",
"joblib",
"matplotlib",
"numexpr",
"numpy",
"odc-algo",
"odc-geo",
"odc-ui",
"owslib",
"packaging",
"pandas",
"pyproj",
"pystac-client", # for pystac
"python-dateutil",
"pyTMD",
"pytz",
"rasterio",
"rasterstats",
"requests",
"scikit-image",
"scikit-learn",
"scipy",
"seaborn",
"shapely",
"tqdm",
"xarray",
# Code style
"black",
"flake8==6.0.0", # remove constraint in the next sandbox image upgrade
"isort",
# Testing
"pytest",
]
[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]
skip_gitignore = true
# Configure isort to be compatible with black.
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 100