-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (61 loc) · 1.99 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
import setuptools
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
include_package_data=True,
name='imat',
version='3.2.3',
author='Sebastian Oliver Eck',
url="https://github.com/sebastian-eck/I-MaT",
description='Interactive Music Analysis Tool (I-MaT)',
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT License",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'iMaT = iMaT.__main__:main'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Matplotlib",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Documentation :: Sphinx",
"Topic :: Education",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
"Topic :: Text Processing :: Linguistic",
],
install_requires=[
"numpy~=1.23.5",
"matplotlib~=3.7.1",
"pandas~=2.0.2",
"music21~=8.3.0",
"miditok~=2.0.6",
"tokenizers~=0.13.3",
"requests~=2.31.0",
"openpyxl~=3.1.2",
"tqdm~=4.65.0",
"seaborn~=0.12.2",
"scipy~=1.10.1"
],
extras_require={
"doc": ["sphinx<7.0.0",
"sphinxcontrib-napoleon~=0.7",
"sphinx-autobuild",
"myst_parser",
"sphinx_rtd_theme~=1.2.0"]
}
)