2from setuptools
import setup
5HERE = pathlib.Path(__file__).parent
7with open(HERE /
"README.md",
"r")
as fh:
8 long_description = fh.read()
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",
17 "Development Status :: 3 - Alpha",
18 "License :: OSI Approved :: MIT License",
19 "Programming Language :: Python :: 3",
20 "Topic :: Multimedia :: Sound/Audio :: Analysis",
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",