Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaSeth777 committed Feb 27, 2024
1 parent ff973fe commit 2e79102
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 36 deletions.
16 changes: 0 additions & 16 deletions Audio_SpectraCLI.egg-info/PKG-INFO

This file was deleted.

11 changes: 0 additions & 11 deletions Audio_SpectraCLI.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion Audio_SpectraCLI.egg-info/dependency_links.txt

This file was deleted.

7 changes: 0 additions & 7 deletions Audio_SpectraCLI.egg-info/requires.txt

This file was deleted.

1 change: 0 additions & 1 deletion Audio_SpectraCLI.egg-info/top_level.txt

This file was deleted.

8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
Expand Down

0 comments on commit 2e79102

Please sign in to comment.