Codebase list msldap / b7fb2907-a5d6-4211-b668-d79229860c14/main msldap / external / asciitree / setup.py
b7fb2907-a5d6-4211-b668-d79229860c14/main

Tree @b7fb2907-a5d6-4211-b668-d79229860c14/main (Download .tar.gz)

setup.py @b7fb2907-a5d6-4211-b668-d79229860c14/mainraw · 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=[],
)