-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
29 lines (27 loc) · 945 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
[project]
name = "WinMagnification"
version = "0.1.0"
authors = [
{ name="MaxBQb" },
]
description = "Python wrapper for Windows Magnification API"
readme = "README.md"
license = { file="LICENSE.md" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: Microsoft :: Windows :: Windows 10",
]
[project.urls]
"Homepage" = "https://github.com/MaxBQb/WinMagnification"
"Bug Tracker" = "https://github.com/MaxBQb/WinMagnification/issues"
"Documentation" = "https://winmagnification.readthedocs.io/en/latest/"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"