forked from marcomusy/pianoplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (45 loc) · 1.82 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
from setuptools import setup
setup(
name='pianoplayer',
version='2.2.0', #change also in __init__.py
packages=['pianoplayer'],
scripts=['bin/pianoplayer'],
install_requires=['music21', 'vedo', 'pretty_midi'],
description=
'Automatic piano fingering generator. Finds and shows in 3D the best fingering combination to play a score.',
long_description="""Automatic piano fingering generator.
Finds and shows in a 3D visualization the best fingering combination to play a score.
Check out https://github.com/marcomusy/pianoplayer for documentation.""",
author='Marco Musy',
author_email='[email protected]',
license='MIT',
url='https://github.com/marcomusy/pianoplayer',
keywords='piano fingering',
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Information Analysis'],
include_package_data=True
)
##############################################################
# cd ~/Projects/pianoplayer/
# pip install .
# # check version number here and in __init__
# ana3
# git status
# python setup.py sdist bdist_wheel
# git commit -a -m 'comment'
# git push
# twine upload dist/pianoplayer-?.?.?.tar.gz -r pypi
# make release
# # check status at https://pypi.org/project/pianoplayer/
# # check status at https://github.com/marcomusy/pianoplayer
##############################################################
#to do:
#- check sound option (pygame in https://github.com/Zulko/pianoputer/blob/master/pianoputer.py)
#- scan all dataset and drop pdfs
#- color each finger note
#- notebook example?
#- zenodo , cov