-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (27 loc) · 915 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "windows_hotkey_checker"
description = "A simple command line tool to check whether a hotkey is already registered by another program on Windows."
version = "0.1.11"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pytest>=7.2.2",
"pytest-mock>=3.10.0",
"pywin32-ctypes>=0.2.0"
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[project.urls]
"Repository" = "https://github.com/heathhenley/windows_hotkey_checker"
[project.scripts]
hotkeys = "windows_hotkey_checker.__main__:main"