-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.3 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
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["uv_build~=0.11"]
build-backend = "uv_build"
[project]
name = "free-threading"
version = "1.1.1"
description = "Thread-first true parallelism"
license = "MIT"
readme = "README.md"
authors = [{ name = "Iskander Gaba", email = "iskander@hey.com" }]
requires-python = ">=3.10"
keywords = [
"gil",
"nogil",
"thread",
"process",
"worker",
"threading",
"free-threading",
"multithreading",
"multiprocessing",
"concurrency",
"parallelism",
]
classifiers = [
"Programming Language :: Python :: 3",
"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",
]
[project.urls]
Documentation = "https://freethreading.readthedocs.io"
Repository = "https://github.com/iskandergaba/free-threading"
[dependency-groups]
dev = [
"ruff~=0.15.0",
"pytest~=9.0.0",
"pytest-cov~=7.0.0",
"pytest-rerunfailures~=16.1.0",
]
docs = [
"sphinx-autoapi~=3.8.0",
"sphinx-autobuild~=2025.08.0",
"python-docs-theme~=2026.3",
]
[tool.uv.build-backend]
module-name = "freethreading"
[tool.uv.dependency-groups]
docs = { requires-python = ">=3.12" }
[tool.ruff.lint]
extend-select = ["E501"]