#!/usr/bin/env python """Installation script for songbook. $ python setup.py install """ from patacrep import __version__ from setuptools import setup, find_packages setup( name='patacrep', version=__version__, description='Songbook compilation chain', author='The Songbook team', author_email='crep@team-on-fire.com', url='https://github.com/patacrep/patacrep', packages=find_packages(), license="GPLv2 or any later version", requires=[ "argparse", "codecs", "distutils", "fnmatch", "glob", "json", "locale", "logging", "os", "re", "subprocess", "sys", "textwrap", "unidecode", "jinja2", "chardet" ], install_requires=[ "argparse", "unidecode", "jinja2", "chardet", "ply" ], include_package_data=True, entry_points={ 'console_scripts': [ "songbook = patacrep.songbook:main", ], }, classifiers=[ "Environment :: Console", "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", "Natural Language :: English", "Operating System :: POSIX :: Linux", "Operating System :: Microsoft :: Windows", "Operating System :: MacOS :: MacOS X", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Utilities", ], platforms=["GNU/Linux", "Windows", "MacOsX"] )