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
|
#!/usr/bin/env python
from distutils.core import setup
import jdcal
version = jdcal.__version__
long_description = open("README.rst").read()
setup(
name="jdcal",
version=version,
description="Julian dates from proleptic Gregorian and Julian calendars.",
long_description=long_description,
license='BSD',
author="Prasanth Nair",
author_email="prasanthhn@gmail.com",
url='http://github.com/phn/jdcal',
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Astronomy',
'Programming Language :: Python',
],
py_modules=["jdcal"]
)
|