-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.17 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "Timed-Threads"
description = "Absolute time deadlines and thread cancelling for Python asynchronous threads"
requires-python = ">=3.10"
readme = "README.rst"
license = "MIT"
maintainers = [
{name = "Mathics3 Group"},
]
classifiers = [
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"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",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/Mathics3/python-timed-threads/"
[project.optional-dependencies]
dev = [
"pytest",
]
[tool.setuptools]
packages = [
"timed_threads",
]
[tool.setuptools.dynamic]
version = {attr = "timed_threads.version.__version__"}