diff --git a/Audio_SpectraCLI.egg-info/PKG-INFO b/Audio_SpectraCLI.egg-info/PKG-INFO deleted file mode 100644 index bed2474..0000000 --- a/Audio_SpectraCLI.egg-info/PKG-INFO +++ /dev/null @@ -1,16 +0,0 @@ -Metadata-Version: 2.1 -Name: Audio_SpectraCLI -Version: 1.0 -Summary: AudioSpectraCLI is a command-line tool that provides real-time FFT visualization of audio spectra. It captures audio input from the microphone and displays the corresponding frequency spectrum directly in the terminal window, allowing users to monitor and analyze audio signals without the need for graphical interfaces. -Home-page: https://github.com/AdityaSeth777/Audio-SpectraCLI -Author: Aditya Seth -Author-email: setha4195@gmail.com -License: MIT -License-File: LICENSE -Requires-Dist: numpy -Requires-Dist: matplotlib -Requires-Dist: sounddevice -Requires-Dist: tabulate -Requires-Dist: setuptools -Requires-Dist: twine -Requires-Dist: wheel diff --git a/Audio_SpectraCLI.egg-info/SOURCES.txt b/Audio_SpectraCLI.egg-info/SOURCES.txt deleted file mode 100644 index 6de344f..0000000 --- a/Audio_SpectraCLI.egg-info/SOURCES.txt +++ /dev/null @@ -1,11 +0,0 @@ -LICENSE -README.md -setup.cfg -setup.py -Audio_SpectraCLI/__init__.py -Audio_SpectraCLI/main.py -Audio_SpectraCLI.egg-info/PKG-INFO -Audio_SpectraCLI.egg-info/SOURCES.txt -Audio_SpectraCLI.egg-info/dependency_links.txt -Audio_SpectraCLI.egg-info/requires.txt -Audio_SpectraCLI.egg-info/top_level.txt \ No newline at end of file diff --git a/Audio_SpectraCLI.egg-info/dependency_links.txt b/Audio_SpectraCLI.egg-info/dependency_links.txt deleted file mode 100644 index 8b13789..0000000 --- a/Audio_SpectraCLI.egg-info/dependency_links.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Audio_SpectraCLI.egg-info/requires.txt b/Audio_SpectraCLI.egg-info/requires.txt deleted file mode 100644 index 3be6c49..0000000 --- a/Audio_SpectraCLI.egg-info/requires.txt +++ /dev/null @@ -1,7 +0,0 @@ -numpy -matplotlib -sounddevice -tabulate -setuptools -twine -wheel diff --git a/Audio_SpectraCLI.egg-info/top_level.txt b/Audio_SpectraCLI.egg-info/top_level.txt deleted file mode 100644 index 62e5e68..0000000 --- a/Audio_SpectraCLI.egg-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -Audio_SpectraCLI diff --git a/setup.py b/setup.py index 414a76c..544580d 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,18 @@ from setuptools import setup, find_packages +with open("README.md", "r") as fh: + long_description = fh.read() + +with open("requirements.txt") as f: + required = f.read().splitlines() setup( name='Audio_SpectraCLI', version='1.0', author="Aditya Seth", + description=""""AudioSpectraCLI is a command-line tool that provides real-time FFT visualization of audio spectra. It captures audio input from the microphone and displays the corresponding frequency spectrum directly in the terminal window, allowing users to monitor and analyze audio signals without the need for graphical interfaces.""", + long_description=long_description, + long_description_content_type="text/markdown", packages=find_packages(), install_requires=[ 'numpy',