mirror of
https://github.com/jazzband/django-categories.git
synced 2026-04-15 04:30:59 +00:00
21 lines
709 B
Python
21 lines
709 B
Python
from distutils.core import setup
|
|
import categories
|
|
|
|
try:
|
|
long_description = open('README.txt').read()
|
|
except IOError:
|
|
long_description = ''
|
|
|
|
setup(name='django-categories',
|
|
version=categories.get_version(),
|
|
description='A way to handle one or more hierarchical category trees in django.',
|
|
long_description=long_description,
|
|
author='Corey Oordt',
|
|
author_email='coordt@washingtontimes.com',
|
|
url='http://opensource.washingtontimes.com/projects/django-categories/',
|
|
packages=['categories', 'editor'],
|
|
classifiers=['Development Status :: 4 - Beta',
|
|
'Framework :: Django',
|
|
'License :: OSI Approved :: Apache License',
|
|
],
|
|
)
|