setup.py 784 B

1234567891011121314151617181920212223242526272829
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. import jdcal
  4. version = jdcal.__version__
  5. long_description = open("README.rst").read()
  6. setup(
  7. name="jdcal",
  8. version=version,
  9. description="Julian dates from proleptic Gregorian and Julian calendars.",
  10. long_description=long_description,
  11. license='BSD',
  12. author="Prasanth Nair",
  13. author_email="prasanthhn@gmail.com",
  14. url='http://github.com/phn/jdcal',
  15. classifiers=[
  16. 'Development Status :: 6 - Mature',
  17. 'Intended Audience :: Science/Research',
  18. 'Operating System :: OS Independent',
  19. 'License :: OSI Approved :: BSD License',
  20. 'Topic :: Scientific/Engineering :: Astronomy',
  21. 'Programming Language :: Python',
  22. ],
  23. py_modules=["jdcal"]
  24. )