forked from alexanderlerch/pyACA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.1 KB
/
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
33
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
with open(HERE / "README.md", "r") as fh:
long_description = fh.read()
setup(name="pyACA",
use_scm_version=True,
setup_requires=['setuptools_scm'],
description="scripts accompanying the book An Introduction to Audio Content Analysis by Alexander Lerch",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
],
keywords="audio analysis features pitch key extraction music onset beat detection descriptors",
url="https://github.com/alexanderlerch/pyACA",
author="Alexander Lerch",
author_email="info@AudioContentAnalysis.org",
license="MIT",
packages=["pyACA"],
install_requires=[
"numpy",
"scipy",
"matplotlib",
],
zip_safe=False)