-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (45 loc) · 1.44 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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "rms-pdslogger"
dynamic = ["version"]
description = "Extension to the Python logging module"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy",
"pyparsing",
"xattr; platform_system!='Windows'"
]
license = {text = "Apache-2.0"}
maintainers = [
{name = "Robert S. French", email = "rfrench@seti.org"}
]
keywords = ["pdslogger"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"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",
"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-pdslogger"
Repository = "https://github.com/SETI/rms-pdslogger"
Source = "https://github.com/SETI/rms-pdslogger"
Issues = "https://github.com/SETI/rms-pdslogger/issues"
[tool.setuptools]
packages = ["pdslogger"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "pdslogger/_version.py"