-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (51 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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "rms-pds4indextools"
dynamic = ["version"]
description = "pds4indextools"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"lxml",
"pandas",
"pyyaml",
"requests",
"rms-pdstemplate"
]
license = {text = "Apache-2.0"}
maintainers = [
{name = "Emilie R. Simpson", email = "[email protected]"}
]
keywords = ["pds4indextools"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows"
]
[project.urls]
Homepage = "https://github.com/SETI/rms-pds4indextools"
Documentation = "https://rms-pds4indextools.readthedocs.io/en/latest"
Repository = "https://github.com/SETI/rms-pds4indextools"
Source = "https://github.com/SETI/rms-pds4indextools"
Issues = "https://github.com/SETI/rms-pds4indextools/issues"
[project.scripts]
pds4_create_xml_index = "pds4indextools.pds4_create_xml_index:main"
pds4_create_collection_product = "pds4indextools.pds4_create_collection_product:main"
[tool.setuptools]
packages = ["pds4indextools"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "pds4indextools/_version.py"