-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 670 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setuptools.setup(
name="PyAudioFunctions",
version="0.1.0",
author="David Martinez Barreiro",
author_email="5133990+dmbarreiro@users.noreply.github.com",
description="Functions written in python for audio processing",
long_description=open('README.txt').read(),
url="https://github.com/dmbarreiro/PyAudioFunctions",
license='LICENSE.txt'
packages=['pyaudiofunctions'],
install_requires=[
"numpy",
"scipy",
"matplotlib",
],
classifiers=(
"Programming Language :: Python :: 3",
"License :: Affero GPL",
),
)