pyACA: Documentation 0.3.1
Source Code for Audio Content Analysis
Loading...
Searching...
No Matches
setup.py
Go to the documentation of this file.
1import pathlib
2from setuptools import setup
3
4# The directory containing this file
5HERE = pathlib.Path(__file__).parent
6
7with open(HERE / "README.md", "r") as fh:
8 long_description = fh.read()
9
10setup(name="pyACA",
11 use_scm_version=True,
12 setup_requires=['setuptools_scm'],
13 description="scripts accompanying the book An Introduction to Audio Content Analysis by Alexander Lerch",
14 long_description=long_description,
15 long_description_content_type="text/markdown",
16 classifiers=[
17 "Development Status :: 3 - Alpha",
18 "License :: OSI Approved :: MIT License",
19 "Programming Language :: Python :: 3",
20 "Topic :: Multimedia :: Sound/Audio :: Analysis",
21 ],
22 keywords="audio analysis features pitch key extraction music onset beat detection descriptors",
23 url="https://github.com/alexanderlerch/pyACA",
24 author="Alexander Lerch",
25 author_email="info@AudioContentAnalysis.org",
26 license="MIT",
27 packages=["pyACA"],
28 install_requires=[
29 "numpy",
30 "scipy",
31 "matplotlib",
32 ],
33 zip_safe=False)