39 lines
1.4 KiB
Python
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',
|
|
)
|