tabo / django-treebeard

Efficient tree implementations for Django 1.0+ :: https://tabo.pe/projects/django-treebeard/

Clone this repository (size: 528.3 KB): HTTPS / SSH
$ hg clone http://code.tabo.pe/django-treebeard
commit 257: 0f2a87d336ee
parent 236: f45c785ede80
parent 256: b38bf3705bca
branch: 1.6.X
tags: tip
merging from 1.61 tag to 1.6.X branch
Gustavo Picon / tabo
7 weeks ago
django-treebeard / setup.py
r257:0f2a87d336ee 38 loc 1.1 KB embed / history / annotate / raw /
#!/usr/bin/env python

import os
from distutils.core import setup

version = '1.61'

classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: Apache Software License",
    "Programming Language :: Python",
    "Operating System :: OS Independent",
    "Topic :: Software Development :: Libraries",
    "Topic :: Utilities",
    "Environment :: Web Environment",
    "Framework :: Django",
]

root_dir = os.path.dirname(__file__)
if not root_dir:
    root_dir = '.'
long_desc = open(root_dir + '/README').read()

setup(
    name='django-treebeard',
    version=version,
    url='https://tabo.pe/projects/django-treebeard/',
    author='Gustavo Picon',
    author_email='tabo@tabo.pe',
    license='Apache License 2.0',
    packages=['treebeard', 'treebeard.templatetags'],
    package_dir={'treebeard': 'treebeard'},
    package_data={'treebeard': ['templates/admin/*.html']},
    description='Efficient tree implementations for Django 1.0+',
    classifiers=classifiers,
    long_description=long_desc,
)