-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
41 lines (35 loc) · 974 Bytes
/
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
[bdist_wheel]
universal = False
[metadata]
name = cython-sounddevice
version = 0.0.1
author = Matthew Reid
author_email = [email protected]
url = https://github.com/nocarryr/cython-sounddevice
description = Cython wrapper for PortAudio
long_description = file: README.md
long_description_content_type = text/markdown
license = GNU General Public License v3 (GPLv3)
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Topic :: Multimedia :: Sound/Audio
Topic :: Multimedia :: Sound/Audio :: Capture/Recording
Topic :: Software Development :: Libraries
Programming Language :: Cython
Programming Language :: Python :: 3
[options]
zip_safe = False
include_package_data = True
packages = find:
[options.packages.find]
exclude =
tests
tools
[options.package_data]
* = LICENSE, README.md, requirements.txt
cysounddevice = *.pxd
[tool:pytest]
testpaths = tests