-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
80 lines (64 loc) · 1.76 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
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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "asfsmd"
authors = [
{name = "Antonio Valentino", email = "antonio.valentino@tiscali.it"},
]
description = "ASF Sentinel-1 Metadata Download tool"
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.7"
keywords = ["satellite", "download"]
license = {text = "MIT License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
dependencies = [
"fsspec",
"aiohttp",
"asf-search",
"asf-search < 6; python_version<'3.8'",
"tqdm",
]
dynamic = ["version"]
[project.optional-dependencies]
cli = ["argcomplete"]
httpio = ["httpio", "requests"]
remotezip = ["remotezip"]
smartopen = ["smart_open"]
all = [
"asfsmd[cli]",
"asfsmd[httpio]",
"asfsmd[remotezip]",
"asfsmd[smartopen]",
]
[project.scripts]
asfsmd = "asfsmd.cli:main"
[project.urls]
Homepage = "https://github.com/avalentino/asfsmd"
Documentation = "https://github.com/avalentino/asfsmd/blob/main/README.rst"
Repository = "https://github.com/avalentino/asfsmd.git"
Changelog = "https://github.com/avalentino/asfsmd/blob/main/CHANGELOG.rst"
[tool.setuptools]
packages = ["asfsmd"]
zip-safe = true
# license-files = ["LICENSE"]
[tool.setuptools.dynamic]
version = {attr = "asfsmd.__version__"}
[tool.black]
line-length = 79
# target-version = ['py311']
[tool.isort]
profile = "black"
length_sort = true
no_inline_sort = true
include_trailing_comma = true
use_parentheses = true
line_length = 79