-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (37 loc) · 857 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
43
44
45
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyrrhic-restic"
authors = [{name = "Jürgen Hötzel", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
requires-python = ">=3.7"
dependencies = [
"cryptography >= 37.0.4",
"typer[all] >= 0.3.2",
"zstandard",
"msgspec >= 0.9.1"
]
[project.scripts]
pyrrhic = "pyrrhic.cli.main:app"
[project.optional-dependencies]
test = [
"pytest",
]
[project.urls]
Home = "https://github.com/juergenhoetzel/pyrrhic"
[tool.flit.module]
name = "pyrrhic"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"test",
]
[tool.black]
line-length = 160
[tool.isort]
profile = "black"