-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
41 lines (36 loc) · 1.33 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
35
36
37
38
39
40
41
[project]
name = "AutoHotkey.py"
dynamic = ["version"]
description = "Write AutoHotkey scripts in Python."
readme = "README.md"
license = {text = "BSD-3-Clause"}
requires-python = ">= 3.8"
authors = [{name = "Sviatoslav Abakumov", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
Documentation = "https://ahkpy.readthedocs.io/en/latest/"
Changelog = "https://github.com/Perlence/AutoHotkey.py/blob/master/CHANGES.md"
"Source code" = "https://github.com/Perlence/AutoHotkey.py"
"Issue tracker" = "https://github.com/Perlence/AutoHotkey.py/issues"
[project.scripts]
ahkpy = "ahkpy.launcher:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "ahkpy.__version__"}
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["-vv"]