mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
31 lines
867 B
Python
31 lines
867 B
Python
from setuptools import setup, find_packages
|
|
import categories
|
|
import os
|
|
|
|
try:
|
|
long_description = open('README.txt').read()
|
|
except IOError:
|
|
long_description = ''
|
|
|
|
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,
|
|
author='Corey Oordt',
|
|
author_email='coordt@washingtontimes.com',
|
|
include_package_data=True,
|
|
url='http://opensource.washingtontimes.com/projects/django-categories/',
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Framework :: Django',
|
|
],
|
|
install_requires = reqs,
|
|
dependency_links = []
|
|
)
|