-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 1.18 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
[project]
name = "pywslocker"
dynamic = ["version"]
description = "Python module to lock workstation on Linux, Windows and macOS"
readme = "README.md"
authors = [{ name = "Vignesh Sivanandha Rao", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Terminals :: Terminal Emulators/X Terminals"
]
keywords = ["pywslocker", "lock-workstation", "light-weight"]
requires-python = ">=3"
[tool.setuptools]
packages = ["pywslocker"]
[tool.setuptools.dynamic]
version = {attr = "pywslocker.version"}
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/thevickypedia/pywslocker"
Source = "https://github.com/thevickypedia/pywslocker"
"Bug Tracker" = "https://github.com/thevickypedia/pywslocker/issues"
"Release Notes" = "https://github.com/thevickypedia/pywslocker/blob/main/release_notes.rst"