-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (46 loc) · 1.44 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
50
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ahkunwrapped"
version = "3.0.3"
description = "Bundled and bridged AutoHotkey for full native code execution from Python."
readme = "README.md"
requires-python = ">=3.13"
authors = [
{ name = "Christopher Galpin" }
]
keywords = ["AutoHotkey", "AHK"]
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Development Status :: 5 - Production/Stable",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Environment :: Win32 (MS Windows)",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
dependencies = [
"pywin32>=311; platform_system=='Windows'",
]
[project.urls]
Homepage = "https://github.com/CodeOptimist/ahkunwrapped"
[dependency-groups]
dev = [
"build~=1.0",
"cogapp~=3.0",
"hypothesis~=6.0",
"psutil~=7.0",
"pyinstaller~=6.0",
"pytest~=9.0",
"schedule~=1.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/ahkunwrapped"]
exclude = [
"src/ahkunwrapped/typings",
]