forked from etsinko/pymonoprice
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.cfg
59 lines (53 loc) · 1.28 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
[metadata]
name = pyxantech
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/rsnodgrass/pyxantech
license = MIT
license_file = LICENSE
description_file = README.md
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
packages =
pyxantech
install_requires =
pyserial>=3.4
pyserial-asyncio>=0.4
# libcst.tests.pyre
python_requires = >=3.10
python_requires > = 3.10
setup_requires =
setuptools
zip_safe = True
[options.extras_require]
tests =
pytest
[mypy]
python_version = 3.13
disallow_any_decorated = true
disallow_any_explicit = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_no_return = true
warn_redundant_casts = true
warn_unreachable = true
warn_unused_configs = True
warn_unused_ignores = true
[mypy-serial]
ignore_missing_imports = True
[mypy-serial_asyncio]
ignore_missing_imports = True
[tool:pytest]
testpaths = tests