forked from mommermi/callhorizons
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 996 Bytes
/
setup.py
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
"""setup function for CALLHORIZONS module"""
from setuptools import setup, find_packages
setup(
name = "CALLHORIZONS",
version = "1.0.11",
author = "Michael Mommert",
author_email = "[email protected]",
description = "CALLHORIZONS is a Python interface to access JPL HORIZONS ephemerides and orbital elements of Solar System bodies.",
license = "MIT",
keywords = "solar system, ephemerides, ephemeris, orbital elements, pyephem, asteroids, planets, spacecraft",
url = "https://github.com/mommermi/callhorizons",
packages=['callhorizons'],
requires=['numpy'],
test_suite='tests',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy",
],
)