mirror of https://github.com/patacrep/patacrep.git
Engine for LaTeX songbooks
http://www.patacrep.com
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
#!/usr/bin/env python
|
|
|
|
"""Installation script for songbook.
|
|
|
|
$ python setup.py install
|
|
"""
|
|
|
|
from distutils.core import setup
|
|
|
|
import songbook_core
|
|
|
|
setup(name='songbook-core',
|
|
version=songbook_core.__STR_VERSION__,
|
|
description='Songbook compilation chain',
|
|
author='The Songbook team',
|
|
author_email='crep@team-on-fire.com',
|
|
url='https://github.com/patacrep/songbook-core',
|
|
scripts=['songbook'],
|
|
license="GPLv2 or any later version",
|
|
requires=[
|
|
"argparse", "codecs", "distutils", "fnmatch", "glob", "json",
|
|
"locale", "logging", "os", "plasTeX", "re", "subprocess", "sys",
|
|
"textwrap", "unidecode"
|
|
],
|
|
packages=['songbook_core'],
|
|
package_data={'songbook_core': ['*', '*/*', '*/*/*']},
|
|
classifiers=[
|
|
"Environment :: Console",
|
|
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
|
|
"Natural Language :: English",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Topic :: Utilities",
|
|
],
|
|
platforms=["GNU/Linux"],
|
|
)
|
|
|