-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.4 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
[project]
name = "win32more"
version = "0.8.0"
description = "Python bindings for Windows API"
readme = "README.md"
requires-python = ">= 3.9"
authors = [
{ name = "Yukihiro Nakadaira", email = "yukihiro.nakadaira@gmail.com" },
]
dependencies = [
"win32more-core == 0.8.*",
"win32more-appsdk == 0.8.*",
"win32more-Microsoft.Windows.SDK.Win32Metadata == 0.8.*",
"win32more-Microsoft.Windows.SDK.Contracts == 0.8.*",
"win32more-Microsoft.WindowsAppSDK == 0.8.*",
"win32more-Microsoft.Web.WebView2 == 0.8.*",
"win32more-Microsoft.Graphics.Win2D == 0.8.*",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
Homepage = "https://github.com/ynkdir/py-win32more"
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
only-include = ["src/win32more"]
[tool.hatch.build.targets.wheel]
packages = ["src/win32more"]
[tool.ruff]
line-length = 120
lint.select = ["E4", "E7", "E9", "F", "I"]