/setup.py
https://bitbucket.org/cklein/django-piston · Python · 36 lines · 31 code · 3 blank · 2 comment · 2 complexity · 3bf66ee4f7c38b426cb250e59d84a95b MD5 · raw file
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- try:
- from setuptools import setup, find_packages
- except ImportError:
- import ez_setup
- ez_setup.use_setuptools()
- from setuptools import setup, find_packages
-
- import os
- setup(
- name = "django-piston",
- version = "0.2.3rc1",
- url = 'http://bitbucket.org/jespern/django-piston/wiki/Home',
- download_url = 'http://bitbucket.org/jespern/django-piston/downloads/',
- license = 'BSD',
- description = "Piston is a Django mini-framework creating APIs.",
- author = 'Jesper Noehr',
- author_email = 'jesper@noehr.org',
- packages = find_packages(),
- namespace_packages = ['piston'],
- include_package_data = True,
- zip_safe = False,
- install_requires=['oauth2'],
- classifiers = [
- 'Development Status :: 3 - Alpha',
- 'Framework :: Django',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: BSD License',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Topic :: Internet :: WWW/HTTP',
- ]
- )