-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (40 loc) · 1.15 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
[project]
name = "stactools-naip"
dynamic = ["version"]
description = "STAC item creation tools for NAIP dataset."
readme = "README.md"
authors = [{name = "stac-utils", email = "[email protected]"}]
keywords = ["stactools", "pystac", "catalog", "STAC"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"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.3",
"pystac>=1.5"
]
[tool.setuptools.dynamic]
version = { attr = "stactools.naip.__version__" }
[project.urls]
homepage = "https://github.com/stactools-naips/stactools-naip"
documentation = "https://stactools-naip.readthedocs.io/en/latest/"
[project.optional-dependencies]
dev = [
"black~=23.3",
"codespell~=2.2",
"coverage~=7.4.0",
"pre-commit~=3.3",
"flake8~=7.0.0",
"pytest-cov~=3.0",
"pytest~=7.3",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 100