-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
setup.cfg
68 lines (62 loc) · 2.21 KB
/
setup.cfg
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
[metadata]
name = spiceypy
version = attr: spiceypy.__version__
description = A Python Wrapper for the NAIF CSPICE Toolkit
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Andrew Annex
author_email = [email protected]
maintainer = Andrew Annex
maintainer_email = [email protected]
license = MIT
license_file = LICENSE
url = https://github.com/AndrewAnnex/SpiceyPy
project_urls =
Homepage = https://github.com/AndrewAnnex/SpiceyPy
Repository = https://github.com/AndrewAnnex/SpiceyPy
Source = https://github.com/AndrewAnnex/SpiceyPy
Conda-Forge = https://anaconda.org/conda-forge/spiceypy
Documentation = https://spiceypy.readthedocs.io
Bug Tracker = https://github.com/AndrewAnnex/SpiceyPy/issues
Changelog = https://github.com/AndrewAnnex/SpiceyPy/blob/main/CHANGELOG.md
keywords = spiceypy, spice, cspice, naif, jpl, space, geometry, ephemeris
readme = README.rst
classifiers =
Development Status :: 5 - Production/Stable
Natural Language :: English
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Astronomy
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
Programming Language :: Python :: 3.13
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
Operating System :: POSIX :: BSD :: FreeBSD
Operating System :: Microsoft :: Windows
[options]
package_dir=
=src
packages=find:
python_requires = >=3.9, <4
include_package_data = True
zip_safe = False
install_requires =
numpy>=1.17.0
tests_require = numpy>=1.17.0; pytest>=7.0.0; pandas>=0.24.0
[options.packages.find]
where = src
[options.extras_require]
tests = numpy>=1.17.0; pytest>=7.0.0; pandas>=0.24.0
dev = numpy>=1.17.0; pytest>=7.0.0; pandas>=0.24.0; coverage>=5.1.0; twine>=3.3.0; wheel; build; black;
[options.package_data]
* = get_spice.py, LICENSE, README.rst, *.so, *.dll, *.dylib
spiceypy = utils/*.so, utils/*.dylib, utils/*.dll
[coverage:run]
relative_files = True
[coverage:paths]
source =
src/spiceypy/
work/SpiceyPy/SpiceyPy/