-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (69 loc) · 1.72 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (69 loc) · 1.72 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "githubtakeout"
version = "0.1.26dev0"
description = "Backup and archive Git Repos and Gists from GitHub"
license = "MIT"
license-files = ["LICENSE"]
authors = [{name = "Corey Goldberg"}]
maintainers = [{name = "Corey Goldberg"}]
readme = "README.md"
requires-python = ">=3.12"
keywords = ["git", "github", "archive", "backup", "export", "takeout"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"GitPython==3.1.50",
"PyGithub==2.9.1",
"python-dotenv==1.2.2",
"rich==15.0.0",
]
[project.scripts]
githubtakeout = "githubtakeout:main"
[project.urls]
homepage = "https://github.com/cgoldberg/githubtakeout"
source = "https://github.com/cgoldberg/githubtakeout"
download = "https://pypi.org/project/githubtakeout"
[dependency-groups]
dev = [
"tox",
]
lint = [
"ruff",
]
test = [
"pytest",
]
validate = [
"validate-pyproject[all]",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.pytest]
addopts = ["-vv"]
tmp_path_retention_policy = "none"
[tool.ruff]
line-length = 88
respect-gitignore = true
target-version = "py312"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ANN", "COM812", "D", "EM102", "G004", "PLR0913",
"RUF012", "S101", "SIM102", "TRY003", "TRY400",
]
fixable = ["ALL"]
[tool.ruff.lint.per-file-ignores]
"**/test_*.py" = ["ARG001", "INP001"]
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 88