-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.12 KB
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyaprilaire"
version = "0.9.1"
readme = "README.md"
dependencies = [
"crc >= 4"
]
classifiers = [
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest-asyncio", "pytest-cov"]
[tool.bumpver]
current_version = "0.9.1"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
norecursedirs = [
".git",
]
log_format = "%(asctime)s.%(msecs)03d %(levelname)-8s %(threadName)s %(name)s:%(filename)s:%(lineno)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
asyncio_mode = "auto"
filterwarnings = []
[tool.coverage.run]
omit = [
"pyaprilaire/mock_server.py",
"pyaprilaire/test_connection.py"
]
[tool.isort]
profile = "black"