2009-07-07 11:31:34 +00:00
|
|
|
from distutils.core import setup
|
2010-04-05 17:08:20 +00:00
|
|
|
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',
|
2010-04-06 11:53:37 +00:00
|
|
|
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.',
|
2010-04-05 17:08:20 +00:00
|
|
|
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/',
|
2009-09-30 14:50:51 +00:00
|
|
|
packages=['categories', 'editor'],
|
2009-07-07 11:31:34 +00:00
|
|
|
classifiers=['Development Status :: 4 - Beta',
|
|
|
|
|
'Framework :: Django',
|
|
|
|
|
'License :: OSI Approved :: Apache License',
|
|
|
|
|
],
|
|
|
|
|
)
|