setup.py 877 B

123456789101112131415161718192021222324252627
  1. from distutils.core import setup
  2. from rd import __version__
  3. long_description = open('README.rst').read()
  4. setup(name="rd",
  5. version=str(__version__),
  6. packages=["rd"],
  7. description="Package for serializing and deserializing of XRD and JRD documents",
  8. author="Jeremy Carbaugh",
  9. author_email="jcarbaugh@gmail.com",
  10. license="BSD",
  11. url="http://github.com/jcarbaugh/python-rd/",
  12. long_description=long_description,
  13. install_requires=["isodate", "pytz", "requests"],
  14. platforms=["any"],
  15. classifiers=[
  16. "Development Status :: 4 - Beta",
  17. "Intended Audience :: Developers",
  18. "License :: OSI Approved :: BSD License",
  19. "Natural Language :: English",
  20. "Operating System :: OS Independent",
  21. "Programming Language :: Python",
  22. "Topic :: Software Development :: Libraries :: Python Modules",
  23. ],
  24. )