-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
45 lines (38 loc) · 1.35 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pyschlage"
description = "Python API for interacting with Schlage WiFi locks."
authors = [
{name = "David Knowles", email = "dknowles2@gmail.com"},
]
dependencies = ["pycognito", "requests"]
requires-python = ">=3.12"
dynamic = ["readme", "version"]
license = {text = "Apache-2.0"}
keywords = ["schlage", "api", "iot"]
classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
"Homepage" = "https://github.com/dknowles2/pyschlage"
"Source Code" = "https://github.com/dknowles2/pyschlage"
"Bug Reports" = "https://github.com/dknowles2/pyschlage/issues"
"Documentation" = "https://pyschlage.readthedocs.io"
[tool.setuptools]
platforms = ["any"]
zip-safe = true
include-package-data = true
[tool.setuptools.dynamic]
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.setuptools_scm]
write_to = "pyschlage/_version.py"
[tool.coverage.report]
omit = ["pyschlage/_version.py"]
[tool.isort]
profile = "black"
combine_as_imports = true
force_sort_within_sections = true
forced_separate = ["tests"]