-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 868 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
from setuptools import setup
from setuptools import find_packages
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="pyaudioaliasingmetrics",
version="0.1.0",
description="Computes SNR and SINAD from spectral data",
author="Maxime COUTANT",
author_email="[email protected]",
url="https://github.com/maxmarsc/pyaudioaliasingmetrics",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
install_requires=["numpy", "numba"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
],
packages=find_packages(),
)