-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.46 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
[project]
name = "fasteners"
version = "0.20"
description = "A python package that provides useful locks"
readme = { file = "README.md", content-type = "text/markdown; charset=UTF-8" }
requires-python = ">=3.6"
keywords = ["lock", "thread", "process", "fasteners"]
license = "Apache-2.0"
authors = [{ name = "Joshua Harlow" }]
maintainers = [{ name = "Paulius Šarka" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"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 :: Implementation :: PyPy",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/harlowja/fasteners"
[dependency-groups]
test = [
"diskcache",
"eventlet",
"more_itertools",
"pytest",
]
docs = [
"mkdocs",
"mkdocstrings[python] >= 0.18",
"mkdocs-material",
]
build = [
"build",
"twine",
]
[tool.uv.dependency-groups.docs]
requires-python = ">=3.12"
[tool.uv.dependency-groups.build]
requires-python = ">=3.12"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["tests", "tests_eventlet"]