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-decorator-include/setup.py
2011-06-06 20:53:06 -07:00

26 lines
849 B
Python

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',
]
)