-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (60 loc) · 1.68 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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "rms-oops"
dynamic = ["version"]
description = "Object-Oriented Python and SPICE"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"astropy",
"cspyce",
"numpy",
"Pillow",
"pyparsing",
"rms-fpzip",
"rms-interval",
"rms-julian",
"rms-pdsparser",
"rms-pdstable",
"rms-polymath",
"rms-solar",
"rms-tabulation",
"rms-vax",
"rms-vicar",
"scipy"
]
license = {text = "Apache-2.0"}
maintainers = [
{name = "Robert S. French", email = "[email protected]"},
{name = "Joseph N. Spitale", email = "[email protected]"}
]
keywords = ["oops"]
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.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-oops"
Repository = "https://github.com/SETI/rms-oops"
Source = "https://github.com/SETI/rms-oops"
Issues = "https://github.com/SETI/rms-oops/issues"
[tool.setuptools]
packages = ["oops", "spicedb"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "oops/_version.py"