-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (50 loc) · 2.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"""Setup File for Lilypond To Band Video Converter."""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# version and root directories for installation and sources
installationVersion = "1.1.1.post1"
installationRootDirectory = "Lib/site-packages/lilypondToBVC"
sourceRootDirectory = "lilypondtobvc/src"
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
#============================================================
setup(
name = "LilypondToBandVideoConverter",
version = installationVersion,
description = "Generator for Notation Videos from Lilypond Text",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/prof-spock/LilypondToBandVideoConverter",
author = "Dr. Thomas Tensi",
author_email = "t.tensi@gmx.de",
license = "MIT",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Multimedia :: Video :: Conversion",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
],
keywords = "video audio generation midi lilypond",
#package_dir = { "" : "" },
packages = [sourceRootDirectory + "/basemodules",
sourceRootDirectory + "/convertermodules"],
install_requires = ["mutagen"],
python_requires = ">=3.7, <4",
data_files = [
(installationRootDirectory, ["LICENSE.txt",
"lilypondToBandVideoConverter.pdf"]),
(installationRootDirectory + "/demo",
["demo/demo.jpg",
"demo/wonderful_song-music.ly",
"demo/globalconfig-pre.txt",
"demo/globalconfig-post.txt",
"demo/wonderful_song-config.txt"])
],
entry_points = { "console_scripts":
[ "lilypondToBVC=lilypondtobvc.src.convertermodules.ltbvc:main" ]
}
)