-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
55 lines (47 loc) · 1.31 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
[bdist_wheel]
universal = False
[metadata]
name = tslumd
version = 0.0.6
author = Matthew Reid
author_email = matt@nomadic-recording.com
url = https://github.com/nocarryr/tslumd
description = Client and Server for TSLUMD Tally Protocols
long_description = file: README.rst
long_description_content_type = text/x-rst
license = MIT
license_file = LICENSE
platforms = any
python_requires = >=3.7
classifiers =
Development Status :: 2 - Pre-Alpha
Natural Language :: English
Operating System :: OS Independent
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
Intended Audience :: Developers
Intended Audience :: Information Technology
Framework :: AsyncIO
Topic :: Multimedia :: Video
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
[options]
package_dir=
=src
packages = find:
install_requires =
python-dispatch
[options.packages.find]
where = src
exclude = tests
[options.package_data]
* = LICENSE, README*
[tool:pytest]
testpaths = tests src doc
addopts = --doctest-modules --doctest-glob="*.rst"
doctest_plus = enabled
timeout = 300