django-categories/setup.py

22 lines
709 B
Python
Raw Normal View History

2009-07-07 11:31:34 +00:00
from distutils.core import setup
import categories
try:
long_description = open('README.txt').read()
except IOError:
long_description = ''
2009-07-07 11:31:34 +00:00
setup(name='django-categories',
version=categories.get_version(),
2009-07-07 11:31:34 +00:00
description='A way to handle one or more hierarchical category trees in django.',
long_description=long_description,
2009-07-07 11:31:34 +00:00
author='Corey Oordt',
author_email='coordt@washingtontimes.com',
url='http://opensource.washingtontimes.com/projects/django-categories/',
packages=['categories', 'editor'],
2009-07-07 11:31:34 +00:00
classifiers=['Development Status :: 4 - Beta',
'Framework :: Django',
'License :: OSI Approved :: Apache License',
],
)