-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 951 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (35 loc) · 951 Bytes
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
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PyTaskbar"
version = "0.1.1"
description = "The ultimate taskbar progress python package!"
readme = "README.md"
authors = [
{name = "N3RDIUM"},
{name = "Tim Lodemann"}
]
requires-python = ">=3.9"
license = { file = "LICENSE" }
classifiers = [
"Operating System :: Microsoft :: Windows :: Windows 10",
]
dependencies = [
"comtypes",
]
[project.urls]
Homepage = "https://github.com/N3RDIUM/PyTaskbar"
Repository = "https://github.com/N3RDIUM/PyTaskbar.git"
Issues = "https://github.com/N3RDIUM/PyTaskbar/issues"
[tool.setuptools]
packages = ["PyTaskbar"]
[tool.setuptools.package-data]
PyTaskbar = ["*.tlb"]
[tool.ruff]
exclude = ["build", "venv", ".venv", "__pycache__"]
preview = true
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "W"]
ignore = ["E501", "SIM108", "SIM102", "SIM114"]