-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
70 lines (58 loc) · 2.04 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
# ------------------------------------------------------------------------------
# Name: setup.py
# Purpose: install converter21 package
#
# Authors: Greg Chapman
#
# Copyright: (c) 2021-2023 Greg Chapman
# License: MIT, see LICENSE
# ------------------------------------------------------------------------------
import setuptools
# must be kept up to date with converter21/shared/sharedconstants.py:_CONVERTER21_VERSION et al
converter21version = '3.2.0'
if __name__ == '__main__':
setuptools.setup(
name='converter21',
version=converter21version,
description='A music21-extending format converter package and command line tool (replaces music21\'s Humdrum and MEI parser, and adds a Humdrum writer and MEI writer)',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/gregchapman-dev/converter21',
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',
'converter',
'conversion',
'format',
'formats',
'humdrum',
'kern',
'krn',
'MEI',
'writer',
'parser',
'reader',
'music21',
'OMR',
'Optical Music Recognition',
],
packages=setuptools.find_packages(),
python_requires='>=3.10',
install_requires=[
'music21>=9.1',
],
project_urls={
'Source': 'https://github.com/gregchapman-dev/converter21',
'Bug Reports': 'https://github.com/gregchapman-dev/converter21/issues',
}
)