-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·56 lines (50 loc) · 1.84 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
#import src
#from src import skymusic
PKG = 'skymusic' # root package name; should have a directory
long_description = '''
A tool to generate sheet music for the game
[Sky](https://thatgamecompany.com/sky/).
Instructions are available at the project homepage.
'''
setup(
name = 'skymusic',
version = '3.0.2',
description = 'Make visual music sheets for Sky: Children of The Light',
long_description = long_description,
long_description_content_type = 'text/markdown',
author = 'Tracey',
author_email = '[email protected]',
maintainer = 'maintainer',
maintainer_email = '[email protected]',
url = 'https://sky-music.github.io',
download_url = {
'Source': 'https://github.com/sky-music/sky-python-music-sheet-maker',
},
license = 'MIT',
package_dir = {"": "src"},
packages = find_packages('src'),
include_package_data = True,
package_data = {"": ["*.css", "*.png", "*.otf", "*.svg", "*.yaml", "*.txt", "*.js"],},
python_requires = '>=3.6',
install_requires = ['pillow', 'pyyaml', 'importlib_resources;python_version<"3.8"'],
extras_require = {
"extra": ["mido>=1.2.9", "requests"]
},
entry_points = {
# This entry point is no longer valid on the dev branch.
# It makes a script called 'skymusic' that runs skymusic.main.main().
'console_scripts': [
'{PKG} = {PKG}.command_line_player:command_line_player'.format(PKG = PKG),
],
},
classifiers = [
"Programming Language :: Python",
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Topic :: Multimedia :: Sound/Audio :: Editors',
'Topic :: Multimedia :: Sound/Audio :: MIDI',
'Topic :: Games/Entertainment',
],
)