#!/usr/bin/python # Copyright (c) 2005-2007 by Mark T. Holder, Florida State University. (see end of file) # the import of ez_setup makes it possible for users without setuptools installed to run this import ez_setup ez_setup.use_setuptools() from setuptools import setup, find_packages setup( name = "arbol", version = "0.01", packages = find_packages(), test_suite = 'arbol.tests', author = "Mark Holder", author_email = "mtholder@gmail.com", description = "Basic data structures for manipulating phylogenies", license = "GNU Lesser General Public License (see LICENCE.txt and LGPL.txt)", keywords = "phylogenetics bioinformatics CIPRES", url = "http://people.ku.edu/~mtholder/arbol", classifiers = [ 'Development Status :: 2 - Pre-Alpha', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Scientific/Engineering :: Bio-Informatics', ], )