-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (38 loc) · 995 Bytes
/
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
[project]
name = "pdr-tests"
version = "0.0.1a0"
description = "Planetary Data Reader test suite"
readme = "README.md"
authors = [ { name = "Million Concepts" } ]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"hostess[aws]",
"pdr",
"pyarrow>=9.0.0",
]
[project.optional-dependencies]
tests = [
# Placeholder. pdr-tests currently has no self-tests.
# "pytest",
]
[project.scripts]
ix = "pdr_tests:ix.cli_main"
[project.urls]
Repository = "https://github.com/MillionConcepts/pdr-tests"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pdr_tests"]
# Recommended for new projects by pytest manual.
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib"
]