Codebase list msldap / 75409fe msldap / external / asciitree / setup.py
75409fe

Tree @75409fe (Download .tar.gz)

setup.py @75409feraw · history · blame

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import os

from setuptools import setup, find_packages


def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()


setup(
    name='asciitree',
    version='0.3.3',
    description='Draws ASCII trees.',
    long_description=read('README.rst'),
    author='Marc Brinkmann',
    author_email='[email protected]',
    url='http://github.com/mbr/asciitree',
    license='MIT',
    packages=find_packages(exclude=['tests']),
    install_requires=[],
)