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.
44 lines
1.3 KiB
44 lines
1.3 KiB
#!/usr/bin/env python3
|
|
|
|
"""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",
|
|
install_requires=[
|
|
"unidecode", "jinja2", "chardet", "ply",
|
|
],
|
|
setup_requires=["hgtools"],
|
|
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 :: 3.3",
|
|
"Programming Language :: Python :: 3.4",
|
|
"Topic :: Utilities",
|
|
],
|
|
platforms=["GNU/Linux", "Windows", "MacOsX"],
|
|
test_suite="patacrep.test.suite",
|
|
long_description = open("README.rst", "r").read(),
|
|
)
|
|
|