forked from lexifdev/django-reroute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 982 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/python
from distutils.core import setup
# Remember to change in reroute/__init__.py as well!
VERSION = '1.1.1'
setup(
name='django-reroute',
version=VERSION,
description="A drop-in replacement for django.conf.urls.defaults which supports HTTP verb dispatch and view wrapping.",
long_description=open('README.rst').read(),
author='Mark Sandstrom',
author_email='[email protected]',
url='http://github.com/dnerdy/django-reroute',
keywords=['reroute', 'django', 'http', 'rest', 'route', 'routing', 'dispatch', 'wrapper'],
packages=['reroute'],
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)