1- import os
2- from setuptools import setup
3-
4- def read (fname ):
5- return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
1+ from setuptools import setup , find_packages
62
73setup (
8- name = 'django-multiurl' ,
9- version = '1.1.0' ,
10- description = 'Allow multiple views to match the same URL.' ,
11- license = 'BSD' ,
12- long_description = read ('README.rst' ),
13- url = 'https://github.com/jacobian/django-multiurl' ,
14-
15- author = 'Jacob Kaplan-Moss and Robert Roskam' ,
16- author_email = 'raiderrobert@gmail.com' ,
17-
18- py_modules = ['multiurl' ],
19- install_requires = ['django>=1.5' ],
20-
21- classifiers = (
4+ name = 'django-multiurl' ,
5+ py_modules = ['multiurl' ],
6+ version = '1.1.0' ,
7+ description = 'Allow multiple views to match the same URL.' ,
8+ license = 'BSD' ,
9+ url = 'https://github.com/raiderrobert/django-multiurl' ,
10+ download_url = 'https://github.com/raiderrobert/django-multiurl/tarball/v1.1.0' ,
11+ author = 'Jacob Kaplan-Moss and Robert Roskam' ,
12+ author_email = 'raiderrobert@gmail.com' ,
13+ install_requires = ['django>=1.5' ],
14+ keywords = 'django urls' ,
15+ classifiers = [
2216 'Development Status :: 4 - Beta' ,
2317 'Environment :: Web Environment' ,
2418 'Framework :: Django' ,
@@ -29,5 +23,5 @@ def read(fname):
2923 'Programming Language :: Python :: 2.7' ,
3024 'Programming Language :: Python :: 3.2' ,
3125 'Programming Language :: Python :: 3.3' ,
32- ) ,
26+ ] ,
3327)
0 commit comments