-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pymusco is now packaged with setuptools
as a result: - it's easier to install (it can now be installed with pip) - this standard install makes linting easier for projects that depend on it also added more type hinting to improve code readability
- Loading branch information
Showing
8 changed files
with
115 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from setuptools import setup | ||
|
||
setup( | ||
name='pymusco', | ||
version=1.0, | ||
description='python musical score tool', | ||
url='https://github.com/g-raffy/pymusco', | ||
author='Guillaume Raffy', | ||
author_email='guillaume.raffy@univ-rennes1.fr', | ||
license='MIT', | ||
packages=['pymusco'], | ||
package_dir={ | ||
'': 'src' | ||
}, | ||
scripts = [ | ||
'src/apps/pymusco' | ||
], | ||
install_requires=[ | ||
'PyPDF2>= 3.0.0', # the syntax has changed between PyPDF2 2.x and PyPDF2 3.x | ||
'pillow', | ||
'opencv-python' | ||
], | ||
zip_safe=False) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.