forked from joblib/threadpoolctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (28 loc) · 988 Bytes
/
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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
# TODO: replace the following section by the standard [project] section to be able
# to use flit v4.
[tool.flit.metadata]
module = "threadpoolctl"
author = "Thomas Moreau"
author-email = "[email protected]"
home-page = "https://github.com/joblib/threadpoolctl"
description-file = "README.md"
requires-python = ">=3.8"
license = "BSD-3-Clause"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.black]
line-length = 88
target_version = ['py38', 'py39', 'py310', 'py311', 'py312']
preview = true