-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
34 lines (29 loc) · 879 Bytes
/
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
[project]
name = "zkaccess_c3"
version = "0.0.15"
description = "A native Python library for communicating with the ZKAccess C3 and inBio Door Access Control Panels."
authors = [
{name = "Vwout", email="vwout@users.noreply.github.com"},
]
#license = "GPL-3.0-or-later"
readme = "readme.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/vwout/zkaccess-c3-py"
"Bug Tracker" = "https://github.com/vwout/zkaccess-c3-py/issues"
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["c3"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.pylint]
max-line-length = 120
disable = ["C0114", "C0115", "C0116", "C0209", "R0801"]