-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 788 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 788 Bytes
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
[project]
name = 'project-name'
version = '0.1.0'
requires-python = '>=3.8'
dependencies = []
description = 'project-description'
readme = { file = 'README.md', content-type = 'text/markdown' }
authors = [
{ name = 'Luca Giuliani', email = 'giuluck9@gmail.com' }
]
maintainers = [
{ name = 'Luca Giuliani', email = 'giuluck9@gmail.com' }
]
license = 'MIT'
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Operating System :: OS Independent'
]
[dependency-groups]
dev = [
"setuptools>=75.3.4",
"pytest>=8.3.5",
"ruff>=0.15.4",
"ty>=0.0.20",
]
[tool.uv.build-backend]
module-root = "src"
[tool.ruff]
line-length = 120
indent-width = 4
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"