-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.03 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "win32more"
version = "0.5.9"
description = "Python bindings for Windows API"
readme = "README.md"
requires-python = ">= 3.9"
authors = [
]
dependencies = [
"typing_extensions; python_version < '3.9'",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
Homepage = "https://github.com/ynkdir/py-win32more"
[tool.hatch.build]
only-include = ["win32more"]
[tool.ruff]
line-length = 120
lint.select = ["E4", "E7", "E9", "F", "I"]