2012-06-19 15:43:53 -03:00
from setuptools import setup , find_packages
setup (
name = " django-request-provider " ,
install_requires = [
' django ' ,
] ,
packages = find_packages ( ' . ' ) ,
package_dir = { ' ' : ' . ' } ,
version = " 1.0.0 " ,
description = " access django request object whenever you need it " ,
long_description = open ( ' README.md ' ) . read ( - 1 ) ,
author = " Tomas Zulberti " ,
author_email = " tzulberti@gmail.com " ,
url = " http://github.com/tzulberti/django-request-provider " ,
2012-06-27 09:35:35 -03:00
zip_safe = False ,
2012-06-19 15:43:53 -03:00
keywords = [
" django contrib " ,
" request object provider "
] ,
classifiers = [
' Development Status :: 5 - Production/Stable ' ,
' Intended Audience :: Developers ' ,
' License :: OSI Approved :: BSD License ' ,
' Framework :: Django ' ,
' Programming Language :: Python ' ,
' Programming Language :: Python :: 2.4 ' ,
' Programming Language :: Python :: 2.5 ' ,
' Programming Language :: Python :: 2.6 ' ,
' Programming Language :: Python :: 2.7 ' ,
' Topic :: Software Development :: Libraries :: Python Modules ' ,
' Topic :: Internet :: WWW/HTTP :: WSGI ' ,
' Topic :: Software Development :: Libraries :: Application Frameworks ' ,
' Topic :: Internet :: WWW/HTTP :: Dynamic Content ' ,
' Environment :: Web Environment ' ,
' Operating System :: OS Independent '
] ,
license = ' License :: OSI Approved :: BSD License ' ,
)