-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (36 loc) · 1.25 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "GRSprocessor"
version = "2.1.6"
description = "GRS processor for atmospheric correction of high-spatial resolution and multispectral satellite images"
readme = "pypi_README.rst"
authors = [{ name = "Tristan Harmel", email = "tristan.harmel@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["Sentinel-2","Landsat-8","Landsat-9","atmospheric correction", "EO satellite"]
requires-python = ">=3.9"
dynamic = ["dependencies"]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
#"grs"= []
"grs"= ['*.yml','data/lut/gases/*.nc', 'data/aux/*.txt']
[tool.setuptools.exclude-package-data]
"*" = [".gitattributes"]
[project.scripts]
grs = "grs.run:main"
#dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/Tristanovsk/grs"
Documentation = "https://grs.readthedocs.io"