-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.13 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "caroline-download"
version = "0.1.0"
authors = [
{ name="Niels Jansen", email="[email protected]" },
]
description = "A tool for downloading data processed by caroline"
keywords = [
"caroline",
"download",
"InSAR",
"sentinel",
"SLC",
"ASF"
]
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.9"
dependencies= [
'asf_search',
'dacite',
'dateparser',
'pyYAML',
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"ruff",
]
[project.scripts]
caroline-download = "caroline_download.cli:main"
[project.urls]
Homepage = "https://bitbucket.org/grsradartudelft/caroline-download/"