| 1234567891011121314151617181920212223242526272829 |
- #!/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"]
- )
|