-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.4 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pytboss"
description = "Python library for interacting with PitBoss grills and smokers."
authors = [
{name = "David Knowles", email = "dknowles2@gmail.com"},
]
dependencies = ["aiohttp", "bleak", "bleak_retry_connector", "dukpy", "mypy_extensions"]
requires-python = ">=3.12"
dynamic = ["readme", "version"]
license = {text = "Apache License 2.0"}
keywords = ["pitboss", "api", "iot", "ble"]
classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
"Homepage" = "https://github.com/dknowles2/pytboss"
"Source Code" = "https://github.com/dknowles2/pytboss"
"Bug Reports" = "https://github.com/dknowles2/pytboss/issues"
[tool.setuptools]
platforms = ["any"]
zip-safe = true
include-package-data = true
[tool.setuptools.dynamic]
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.setuptools.packages.find]
# where = ["."]
# include = ["pytboss"]
exclude = ["fake_firmware"]
[tool.setuptools_scm]
write_to = "pytboss/_version.py"
[tool.isort]
profile = "black"
combine_as_imports = true
force_sort_within_sections = true
forced_separate = ["tests"]