-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
39 lines (34 loc) · 859 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
[metadata]
name = btzen
version = 0.8.1
author = Artur Wroblewski
author_email = [email protected]
license = GPLv3+
description = BTZen - library to asynchronously access Bluetooth devices
long_description = file: README
long_description_content_type = text/x-rst
url = https://github.com/wrobell/btzen
classifiers =
Topic :: Software Development :: Libraries
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Programming Language :: Python :: 3
Development Status :: 4 - Beta
[options]
packages = find:
python_requires = >= 3.11
include_package_data = True
[options.package_data]
* =
py.typed
*.pyi
*.pyx
*.pxd
[options.extras_require]
tests =
mypy == 1.10.0
pytest-cov
[tool:pytest]
addopts=--cov btzen --cov-report=term-missing
[tool:coverage:report]
show_missing=1
partial_branches=1