-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (62 loc) · 1.45 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
[build-system]
requires = [
"setuptools",
"setuptools-scm[toml]",
]
build-backend = "setuptools.build_meta"
[project]
name = "stacterm"
authors = [
{name = "Matthew Hanson", email = "[email protected]"},
]
description = "STAC Items in the terminal"
requires-python = ">=3.9"
keywords = [
"stac",
]
license = {text = "MIT License"}
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pandas>=1.2",
"termtables>=0.2",
"plotext>=3.1",
]
dynamic = [
"version",
"readme",
]
[project.scripts]
stacterm = "stacterm.cli:cli"
[project.urls]
homepage = "https://github.com/stac-utils/stac-terminal"
[project.optional-dependencies]
dev = [
"pre-commit >=3.1.1",
"pre-commit-hooks >=4.4.0",
"black >=23.1.0",
"ruff >=0.0.253",
"mypy >=1.0.1",
"pip-tools >=6.12.3",
"pytest >=7.2.2",
"pytest-cov >=4.0.0",
"pyupgrade >=3.3.1",
"isort >=5.12.0",
"types-python-dateutil >=2.8.19.14"
]
[tool.setuptools_scm]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
[tool.ruff]
ignore = ["E501"]