-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.48 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
[project]
name = 'geedim'
description = 'Search, composite and download Google Earth Engine imagery.'
readme = 'README.rst'
requires-python = '>=3.8'
dependencies = [
'numpy>=1.19',
'rasterio>=1.3.8',
'click>=8',
'tqdm>=4.6',
'earthengine-api>=0.1.379',
'requests>=2.2',
'tabulate>=0.8'
]
authors = [{name = 'Leftfield Geospatial'}]
keywords = [
'earth engine', 'satellite imagery', 'search', 'download', 'composite', 'cloud', 'shadow'
]
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
]
dynamic = ['version']
[project.scripts]
geedim = 'geedim.cli:cli'
[project.optional-dependencies]
tests = ['pytest', 'pytest-xdist']
docs = ['sphinx', 'sphinx-click', 'sphinx-rtd-theme', 'nbsphinx', 'ipykernel', 'jupyter-sphinx']
[project.urls]
Homepage = 'https://github.com/leftfield-geospatial/geedim'
Documentation = "https://geedim.readthedocs.org"
Source = 'https://github.com/leftfield-geospatial/geedim'
Changelog = 'https://github.com/leftfield-geospatial/geedim/releases'
Issues = 'https://github.com/leftfield-geospatial/geedim/issues'
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ['geedim']
[tool.setuptools.dynamic]
version = {attr = 'geedim.version.__version__'}
[tool.setuptools.package-data]
geedim = ['data/ee_stac_urls.json']
[tool.black]
line-length = 120
skip-string-normalization = true