-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
43 lines (34 loc) · 969 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
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "hwdesk"
requires-python = ">=3.11"
authors = [{ name = "Pradish Bijukchhe", email = "[email protected]" }]
description = ""
readme = "README.md"
license = { file = "LICENSE" }
keywords = []
classifiers = ["Programming Language :: Python :: 3"]
dynamic = ["version", "dependencies"]
[project.urls]
Homepage = "https://github.com/sandbox-pokhara/hwdesk"
Issues = "https://github.com/sandbox-pokhara/hwdesk/issues"
[project.gui-scripts]
hwdesk = "hwdesk.__main__:main"
[tool.setuptools.dynamic]
version = { attr = "hwdesk.__version__" }
dependencies = { file = "requirements.txt" }
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-dir]
"hwdesk" = "hwdesk"
[tool.isort]
line_length = 79
force_single_line = true
[tool.black]
line-length = 79
preview = true
[tool.pyright]
typeCheckingMode = "strict"
include = ["hwdesk", "test.py"]