debian-jplephem/setup.py

35 lines
1.2 KiB
Python
Raw Permalink Normal View History

from distutils.core import setup
2013-01-18 17:30:35 +01:00
# Fake the presence of numpy so import can succeed.
import sys
sys.modules['numpy'] = sys.modules['sys']
2013-01-18 17:30:35 +01:00
import jplephem
description, long_description = jplephem.__doc__.split('\n', 1)
2013-01-18 17:30:35 +01:00
setup(name = 'jplephem',
2020-03-26 17:41:21 +01:00
version = '2.14',
description = description,
long_description = long_description,
license = 'MIT',
author = 'Brandon Rhodes',
author_email = 'brandon@rhodesmill.org',
classifiers = [
2013-01-18 17:30:35 +01:00
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
2012-09-03 05:41:16 +02:00
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
2019-12-13 15:31:00 +01:00
'Programming Language :: Python :: 3.7',
2020-03-26 17:41:21 +01:00
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Astronomy',
],
2013-01-18 17:30:35 +01:00
packages = ['jplephem'],
install_requires = ['numpy'],
)