-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 840 Bytes
/
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
from setuptools import setup, find_namespace_packages
setup(name='Tabalchi',
version='0.0.9',
description='Tabalchi: Parser and Generator for Indian Classical Music',
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="music midi indian-music, audio-transcription",
url="https://github.com/shreyanmitra/Tabalchi",
author = "Shreyan Mitra",
install_requires=[
"jsonschema",
"playsound",
"pydub",
"audio_effects",
"pyacoustid",
"pychromaprint",
"typing",
"pathlib",
"transformers",
"torch",
"fsspec",
"rich"
],
include_package_data=True,
package_data={'': ['static/*']},
packages=["Tabalchi"],
)