-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
76 lines (69 loc) · 2.23 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[bdist_wheel]
universal = False
[metadata]
name = cyndilib
version = 0.0.5
author = Matthew Reid
author_email = [email protected]
project_urls =
Homepage = https://github.com/nocarryr/cyndilib
Documentation = https://cyndilib.readthedocs.io
Download = https://pypi.org/project/cyndilib
Source = https://github.com/nocarryr/cyndilib
Tracker = https://github.com/nocarryr/cyndilib/issues
description = Python wrapper for NDI® written in Cython
long_description = file: README.rst
long_description_content_type = text/x-rst
license = MIT
license_files =
LICENSE
libndi_licenses.txt
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: MacOS
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft
Operating System :: Microsoft :: Windows
Operating System :: Microsoft :: Windows :: Windows 10
Operating System :: POSIX
Operating System :: POSIX :: Linux
Programming Language :: Cython
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Topic :: Multimedia
Topic :: Multimedia :: Sound/Audio
Topic :: Multimedia :: Sound/Audio :: Capture/Recording
Topic :: Multimedia :: Sound/Audio :: Conversion
Topic :: Multimedia :: Video
Topic :: Multimedia :: Video :: Capture
Topic :: Multimedia :: Video :: Conversion
Topic :: Software Development
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
setup_requires =
Cython>=3
numpy
install_requires =
numpy
importlib_resources;python_version<'3.9'
include_package_data = True
package_dir=
=src
packages = find:
[options.packages.find]
where = src
exclude = tests
[tool:pytest]
testpaths = tests
addopts = -n auto --no-success-flaky-report --doctest-modules --doctest-glob="*.rst"