-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
26 lines (24 loc) · 849 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
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'django-decorator-include',
version = '0.1',
license = 'BSD',
description = 'Include Django URL patterns with decorators.',
long_description = read('README.rst'),
author = 'Jeff Kistler',
author_email = 'jeff@jeffkistler.com',
url = 'https://github.com/jeffkistler/django-decorator-include/',
packages = ['decorator_include', 'decorator_include.tests'],
package_dir = {'': 'src'},
classifiers = [
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)