This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
django-request-provider/setup.py
2012-06-27 09:35:35 -03:00

39 lines
1.4 KiB
Python

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",
zip_safe = False,
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',
)