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