-
Notifications
You must be signed in to change notification settings - Fork 79
/
setup.py
65 lines (61 loc) · 1.98 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import setuptools
from setuptools import setup, find_packages
from pathlib import Path
from spafe import version
here = Path(__file__).parent
# get readme text
with open(here / "README.md") as readme_file:
LONG_DESCRIPTION = readme_file.read()
with open(here / "requirements.txt") as req_file:
requirements = req_file.read().split()
setup(
name="spafe",
version=version.__version__,
author="Ayoub Malek",
author_email="[email protected]",
maintainer="Ayoub Malek",
maintainer_email="[email protected]",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
url="https://github.com/SuperKogito/spafe",
license="BSD",
description="Simplified Python Audio-Features Extraction.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
keywords="audio processing, features extraction",
install_requires=requirements,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Editors",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
platforms="any",
extras_require={
"tests": [
"pytest>=6.2.4",
"pytest-cov",
"codecov",
"coveralls",
"pytest-xdist",
"codacy-coverage",
"matplotlib",
"mock==4.0.3",
],
"docs": [
"sphinxcontrib-napoleon==0.7",
"nbsphinx==0.8.9",
"pydata-sphinx-theme==0.8.1",
"matplotlib",
],
"plotting": {"maplotlib"},
},
)