-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 2.07 KB
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
47
48
49
[build-system]
requires = ["setuptools>=61.0", "wheel"] # Specify build tools
build-backend = "setuptools.build_meta" # Use setuptools as the build backend
[project]
name = "pykeybindmanager"
version = "0.2.2" # Matches __init__.py
authors = [
{ name="Boris Djordjevic" }, # Using the name provided earlier
]
description = "A simple Python module for listening to keyboard keybinds (single keys or combinations) with toggle, double-press, and hold support."
readme = "README.md" # Link to your README file
license = "MIT" # Use SPDX identifier instead of table
requires-python = ">=3.7" # Specify minimum Python version (pynput needs >=3.7)
classifiers = [ # Standard classifiers for PyPI
"Development Status :: 4 - Beta", # Or 3 - Alpha if preferred
"Intended Audience :: Developers",
# "License :: OSI Approved :: MIT License", # Removed - covered by SPDX identifier above
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Desktop Environment",
"Topic :: Utilities",
]
dependencies = [
"pynput>=1.7.0", # Specify the core dependency
]
[project.urls] # Optional: Links for PyPI page
# Replace YOUR_USERNAME with the actual GitHub username or organization
"Homepage" = "https://github.com/YOUR_USERNAME/pykeybindmanager"
"Bug Tracker" = "https://github.com/YOUR_USERNAME/pykeybindmanager/issues"
[tool.setuptools]
# Tell setuptools to find packages automatically in the 'src' directory
[tool.setuptools.packages.find]
where = ["src"] # Look for packages in the src directory
[tool.setuptools.package-data]
# Ensure the sound files are included (relative to the package dir inside src)
"pykeybindmanager.sounds" = ["*.wav"]