-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
68 lines (55 loc) · 1.34 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
[build-system]
requires = [
"setuptools>=61",
"setuptools-scm>=8", # installs all package data, including XML product specs
]
build-backend = "setuptools.build_meta"
[project]
name = "nisarqa"
requires-python = ">=3.9"
description = "NISAR ADT Quality Assurance Software"
# README format is auto-detected from the extension as GitHub-flavored Markdown
readme = "README.md"
authors = [
{ name = "Sam Niemoeller", email = "[email protected]" },
]
keywords = [
"nisar",
"radar",
"quality-assurance",
"qa",
"remote-sensing",
"sar",
"synthetic-aperture-radar",
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
dependencies = [
"cycler",
"h5py>=3",
"isce3>=0.23",
"matplotlib",
"numpy>=1.20",
"pillow",
"python>=3.9",
"ruamel.yaml",
"shapely",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "nisarqa.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
Homepage = "http://nisar.jpl.nasa.gov"
[project.scripts]
nisarqa = "nisarqa.__main__:main"
[tool.black]
preview = true
line-length = 80