-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 846 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
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"
[project]
name = "python_backup_tool"
version = "1.0"
description = "Python script that helps to burn files to multiple CD/DVD/BR files formats"
readme = "README.md"
requires-python = ">=3.0"
keywords = ["Ashampoo", ""]
authors = [
{name="Bohdan Bobrowski", email="bohdanbobrowski@gmail.com"},
]
maintainers = [
{name="Bohdan Bobrowski", email="bohdanbobrowski@gmail.com"}
]
dependencies = [
"pydantic",
"progress>=1.6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"ruff>=0.6.4",
"mypy>=1.11.2",
]
[project.scripts]
python_backup_tool = "python_backup_tool.python_backup_tool:main"
[tool.setuptools]
packages = ["python_backup_tool"]
[tool.ruff.lint]
select = ["E", "F", "UP", "B", "I"]