-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.22 KB
/
setup.py
File metadata and controls
32 lines (31 loc) · 1.22 KB
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
from setuptools import setup, find_packages
setup(
name="bhargava_swara",
version="0.0.15",
author="Kuchi Chaitanya Krishna Deepak",
author_email="kckdeepak29@gmail.com",
description="A library for analysis and synthesis of Indian classical music",
long_description=open("README.md").read() + "\n\n" + open("CHANGELOG.txt").read(),
long_description_content_type="text/markdown",
url="",
license="MIT",
packages=find_packages(),
install_requires=[
"google-generativeai>=0.1.0",
"librosa>=0.10.0", # For mel spectrogram
"matplotlib>=3.7.0", # For plotting
"numpy>=1.24.0", # Required by librosa and matplotlib
"seaborn>=0.11.0", # Added seaborn
"sounddevice>=0.4.0",
"scipy>=1.10.0", # For audio processing
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
keywords=["music","analysis","synthesis","carnatic","hindustani","indian classical music","raga","tala","spectograms","signal"],
)