-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.cfg
45 lines (40 loc) · 1.21 KB
/
setup.cfg
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
[tool:pytest]
addopts = --ignore docs/conf.py --cov-report term-missing --cov pyrubberband
[metadata]
name = pyrubberband
author = Brian McFee
author_email = [email protected]
version = attr: pyrubberband.version.version
url = http://github.com/bmcfee/pyrubberband
download_url = http://github.com/bmcfee/pyrubberband/releases
description = Python module to wrap rubberband
long_description = A python module to wrap rubberband.
keywords = audio, music, sound
license = ISC
license_files = LICENSE
classifiers =
License :: OSI Approved :: ISC License (ISCL)
Programming Language :: Python
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Multimedia :: Sound/Audio :: Analysis
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
packages = find:
install_package_data = True
python_requires = >=3.7
install_requires =
numpy >= 1.0
soundfile >= 0.12.1
[options.extras_require]
docs =
numpydoc
tests =
pytest
pytest-cov