-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.39 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
[project]
name = 'homonim'
description = 'Correct aerial and satellite imagery to surface reflectance.'
readme = 'README.rst'
requires-python = '>=3.8'
dependencies = [
'rasterio>=1.1',
'opencv-python-headless>=4.5',
'numpy>=1.19',
'click>=8',
'tqdm>=4.6',
'pyyaml>=5.4',
'cloup>=0.15',
'tabulate>=0.8',
]
authors = [{name = 'Leftfield Geospatial'}]
license = {text = 'AGPL-3.0-or-later'}
keywords = [
'drone', 'aerial', 'satellite', 'image', 'surface reflectance', 'correction', 'harmonization', 'anisotropy', 'brdf',
'atmospheric correction',
]
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
]
dynamic = ['version']
[project.scripts]
homonim = 'homonim.cli:cli'
[project.optional-dependencies]
test = ['pytest']
[project.urls]
Homepage = 'https://github.com/leftfield-geospatial/homonim'
Source = 'https://github.com/leftfield-geospatial/homonim'
Documentation = 'https://homonim.readthedocs.io'
Changelog = 'https://github.com/leftfield-geospatial/homonim/releases'
Issues = 'https://github.com/leftfield-geospatial/homonim/issues'
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ['homonim']
[tool.setuptools.dynamic]
version = {attr = 'homonim.version.__version__'}