-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 837 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
29
30
31
32
import os
from setuptools import setup, find_packages
this_directory = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(this_directory, 'Readme.md'), encoding='utf-8') as f:
long_description = f.read()
except FileNotFoundError:
long_description = 'Long description not found.'
setup(
name='Audio_SpectraCLI',
version='4.1.0',
author="Aditya Seth",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
'numpy',
'matplotlib',
'sounddevice',
'tabulate',
'setuptools',
'twine',
'wheel',
'pyqt5',
'scipy',
'pyaudio'
],
license="Apache License 2.0",
url="https://github.com/AdityaSeth777/Audio-SpectraCLI",
)