-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 873 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 873 Bytes
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
# build system is setuptools
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
# project details
[project]
name = "threadtools"
version = "1.0.2"
authors = [{ name = "Drew Whitney", email = "drewlwhitney@gmail.com" }]
description = "Tools for synchronizing threads using better locks and signals."
readme = "README.md"
requires-python = ">=3.13"
# license
license = "GPL-3.0-or-later"
license-files = ["LICEN[CS]E*"]
# project links
[project.urls]
Homepage = "https://github.com/drewlwhitney/threadtools"
Issues = "https://github.com/drewlwhitney/threadtools/issues"
# setuptools
[tool.setuptools.packages.find]
where = ["src"]
include = ["threadtools"]
# pytest
[tool.pytest.ini_options]
minversion = "8.4"
addopts = "-q -s"
testpaths = ["./tests"]
python_files = ["*.py"]
python_functions = ["test_*"]