-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
82 lines (71 loc) · 1.83 KB
/
pyproject.toml
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
77
78
79
80
81
82
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "aioraven"
authors = [
{name = "Scott K Logan", email = "[email protected]"},
]
description = "Asynchronous communication with Rainforest RAVEn devices."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache License, Version 2.0"}
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"iso4217",
"pyserial>=2.5",
"pyserial-asyncio-fast",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
]
[project.urls]
Homepage = "https://github.com/cottsay/aioraven"
Changelog = "https://github.com/cottsay/aioraven/blob/main/CHANGELOG.md"
GitHub = "https://github.com/cottsay/aioraven"
[tool.coverage.run]
source = ["aioraven"]
[tool.flake8]
exclude = [
".git",
"build",
"__pycache__",
]
import-order-style = "google"
extend_ignore = ["A003", "D"]
[tool.mypy]
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
ignore_missing_imports = true
warn_return_any = true
warn_unreachable = true
[tool.pydocstyle]
add_ignore = "D100,D102,D103,D104,D105"
[tool.pytest.ini_options]
asyncio_mode = "strict"
filterwarnings = [
"ignore:The loop argument is deprecated::asyncio",
"ignore:Unknown config option. asyncio_mode::_pytest",
]
junit_suite_name = "aioraven"
[tool.setuptools.dynamic]
version = {attr = "aioraven.__version__"}
[tool.setuptools.package-data]
aioraven = ["py.typed"]
[tool.setuptools.packages.find]
where = ["."]
exclude = [
"test",
"test.*",
]