-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 1.34 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
42
43
44
45
46
47
48
49
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "win-precise-time"
description = ''
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
keywords = [
"Windows",
"time",
"sleep",
"GetSystemTimePreciseAsFileTime",
"SetWaitableTimerEx",
"CREATE_WAITABLE_TIMER_HIGH_RESOLUTION",
]
authors = [
{ name = "Artur Drogunow", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = []
dynamic = ["version"]
[project.urls]
Documentation = "https://win-precise-time.readthedocs.io/en/latest/"
Issues = "https://github.com/zariiii9003/win-precise-time/issues"
Source = "https://github.com/zariiii9003/win-precise-time"
Homepage = "https://github.com/zariiii9003/win-precise-time"
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["src/win_precise_time/_version.py"]
wheel.packages = ["src/win_precise_time"]
[tool.setuptools_scm] # Section required
write_to = "src/win_precise_time/_version.py"
[tool.cibuildwheel]
test-requires = "pytest"
test-command = "pytest {project}/tests"
build-frontend = "build"
skip = "pp*"