generated from stactools-packages/template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
66 lines (60 loc) · 1.71 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
[project]
name = "stactools-nisar-sim"
version = "1.0.0"
description = "This is a stactools package for Simulated NISAR data"
readme = "README.md"
authors = [
{ name = "Jamison French", email = "[email protected]" },
{ name = "Alex Mandel", email = "[email protected]"}
]
maintainers = [{ name = "Jamison French", email = "[email protected]" }]
keywords = ["stactools", "pystac", "catalog", "STAC", "NISAR", "Simulated", "SAR"]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
dependencies = [
"stactools>=0.4.0",
"h5py>=3.8.0",
"s3fs",
"requests"
]
[project.optional-dependencies]
dev = [
"black~=23.9",
"codespell~=2.2",
"mypy~=1.5",
"pre-commit~=3.4",
"pytest-cov~=4.1",
"pytest~=7.4",
"ruff==0.0.288",
]
docs = ["pystac~=1.8", "ipykernel~=6.25", "jinja2~=3.1"]
[project.urls]
Github = "https://github.com/stactools-packges/nisar-sim"
Issues = "https://github.com/stactools-packges/nisar-sim/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
[tool.mypy]
explicit_package_bases = true
namespace_packages = true
show_error_codes = true
strict = true
mypy_path = "src"
[tool.ruff]
select = ["E", "F", "I"]
ignore = [
"E501", # line too long, handled by black
]