django-categories/setup.py

32 lines
866 B
Python
Raw Normal View History

from setuptools import setup, find_packages
import categories
import os
try:
long_description = open('README.md').read()
except IOError:
long_description = ''
2009-07-07 11:31:34 +00:00
try:
reqs = open(os.path.join(os.path.dirname(__file__), 'requirements.txt')).read()
except (IOError, OSError):
reqs = ''
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,
long_description_content_type="text/markdown",
author='Corey Oordt',
2011-05-12 10:58:46 +00:00
author_email='coreyoordt@gmail.com',
include_package_data=True,
url='http://github.com/jazzband/django-categories',
packages=find_packages(exclude=['example*', ]),
classifiers=[
'Framework :: Django',
],
install_requires=reqs,
dependency_links=[]
)