-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 829 Bytes
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 829 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
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools==69.1.0", "wheel==0.42.0"]
[project]
name = "foxysafe"
version = "0.1.5"
requires-python = ">=3.12.1"
description = "GitLab backup tool."
readme = "README.md"
license = {text = "MIT"}
dynamic = ["dependencies"]
[project.optional-dependencies]
dev = [
"black==24.2.0",
"build==1.0.3",
"isort==5.13.2",
"pipdeptree==2.7.1",
"ruff==0.2.2",
"twine==4.0.2"
]
[project.scripts]
foxysafe = "foxysafe.entrypoints:main"
[project.urls]
Homepage = "https://github.com/Pythoniasm/foxysafe"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.isort]
profile = "black"
line_length = 120
src_paths = ["foxysafe"]
[tool.black]
line-length = 120
[tool.ruff]
target-version = "py312"
line-length = 120
fix = true