/setup.py

https://bitbucket.org/cklein/django-piston · Python · 36 lines · 31 code · 3 blank · 2 comment · 2 complexity · 3bf66ee4f7c38b426cb250e59d84a95b MD5 · raw file

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. try:
  4. from setuptools import setup, find_packages
  5. except ImportError:
  6. import ez_setup
  7. ez_setup.use_setuptools()
  8. from setuptools import setup, find_packages
  9. import os
  10. setup(
  11. name = "django-piston",
  12. version = "0.2.3rc1",
  13. url = 'http://bitbucket.org/jespern/django-piston/wiki/Home',
  14. download_url = 'http://bitbucket.org/jespern/django-piston/downloads/',
  15. license = 'BSD',
  16. description = "Piston is a Django mini-framework creating APIs.",
  17. author = 'Jesper Noehr',
  18. author_email = 'jesper@noehr.org',
  19. packages = find_packages(),
  20. namespace_packages = ['piston'],
  21. include_package_data = True,
  22. zip_safe = False,
  23. install_requires=['oauth2'],
  24. classifiers = [
  25. 'Development Status :: 3 - Alpha',
  26. 'Framework :: Django',
  27. 'Intended Audience :: Developers',
  28. 'License :: OSI Approved :: BSD License',
  29. 'Operating System :: OS Independent',
  30. 'Programming Language :: Python',
  31. 'Topic :: Internet :: WWW/HTTP',
  32. ]
  33. )