blob: ce2656502395c9e6f33f18dbc9b938c849066c0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[project]
name = "my_project"
version = "0.1.0"
description = "A sample Python project"
authors = [
{ name = "John Doe", email = "john.doe@example.com" },
]
optional-dependencies = { dev = ["pytest", "black"], docs = ["sphinx"] }
# Comment
[tool.black]
line-length = 88
target-version = ["py38"]
# Another comment
[build-system]
requires = ["setuptools >=42"]
build-backend = "setuptools.build_meta"
|