-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpyproject.toml
42 lines (37 loc) · 952 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
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyproject_hooks"
authors = [
{name = "Thomas Kluyver", email = "[email protected]"},
]
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.7"
dependencies = []
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dynamic = ["version", "description"]
[project.urls]
Source = "https://github.com/pypa/pyproject-hooks"
Documentation = "https://pyproject-hooks.readthedocs.io/"
Changelog = "https://pyproject-hooks.readthedocs.io/en/latest/changelog.html"
[tool.flit.sdist]
include = [
"tests/",
"docs/",
"dev-requirements.txt",
"noxfile.py",
"pytest.ini",
]
exclude = [
"docs/_build"
]
[tool.ruff]
src = ["src", "tests"]
[tool.ruff.isort]
known-first-party = ["pyproject_hooks", "tests"]