forked from GeoscienceAustralia/dea-waterbodies
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (80 loc) · 2.54 KB
/
pyproject.toml
File metadata and controls
88 lines (80 loc) · 2.54 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
[build-system]
requires = ["read_version ~= 0.3.0","setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "deafrica-waterbodies"
description = "Digital Earth Africa Waterbodies"
authors = [{name = "Digital Earth Africa", email = "systems@digitalearthafrica.org"}]
maintainers = [{name = "Digital Earth Africa", email = "systems@digitalearthafrica.org"}]
readme = {file = "README.rst", content-type = "text/x-rst"}
# 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',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Hydrology',
]
requires-python = ">=3.6.0"
dependencies = [
'aiobotocore[awscli,boto3]',
# 'boto3',
# 'botocore',
# 'types-aiobotocore[essential]',
'boto3-stubs[sqs,s3]',
'click',
'datacube',
'deafrica-tools >= 2.1.2',
'fsspec',
'gdal',
'geopandas',
'numpy',
'odc-dscache',
'odc-stats',
'pandas',
'python-dateutil',
'python-geohash',
'shapely',
'tqdm',
# Code style
'black',
'isort',
'flake8',
# Testing
'pytest',
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/digitalearthafrica/deafrica-waterbodies"
Repository = "https://github.com/digitalearthafrica/deafrica-waterbodies"
Documentation = "https://github.com/digitalearthafrica/deafrica-waterbodies#readme"
"Bug Tracker" = "https://github.com/digitalearthafrica/deafrica-waterbodies/issues"
[project.scripts]
deafrica-waterbodies="deafrica_waterbodies.cli.main:main"
[tool.setuptools]
packages = ["deafrica_waterbodies"]
[tool.setuptools.dynamic]
version = {attr = "deafrica_waterbodies.__version__"}
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[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