forked from gregchapman-dev/musicdiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (59 loc) · 2.18 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# ------------------------------------------------------------------------------
# Purpose: musicdiff is a package for comparing music scores using music21.
#
# Authors: Greg Chapman <[email protected]>
# musicdiff is derived from:
# https://github.com/fosfrancesco/music-score-diff.git
# by Francesco Foscarin <[email protected]>
#
# Copyright: (c) 2022, 2023 Francesco Foscarin, Greg Chapman
# License: MIT, see LICENSE
# ------------------------------------------------------------------------------
from setuptools import setup, find_packages
import pathlib
musicdiffversion = '3.0.0'
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'pypi_README.md').read_text(encoding='utf-8')
if __name__ == '__main__':
setup(
name='musicdiff',
version=musicdiffversion,
description='A music score notation diff package',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/gregchapman-dev/musicdiff',
author='Greg Chapman',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: OS Independent',
'Natural Language :: English',
],
keywords=[
'music',
'score',
'notation',
'diff',
'compare',
'OMR',
'Optical Music Recognition',
'assess',
'assessment',
'comparison',
'music21',
],
packages=find_packages(),
python_requires='>=3.10',
install_requires=[
'music21>=9.1',
'numpy',
'converter21>=3.0'
],
project_urls={
'Documentation': 'https://gregchapman-dev.github.io/musicdiff',
'Source': 'https://github.com/gregchapman-dev/musicdiff',
'Bug Reports': 'https://github.com/gregchapman-dev/musicdiff/issues',
}
)