-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "github-archive"
description = "A powerful tool to concurrently clone, pull, or fork user and org repos and gists to create a GitHub archive."
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Justintime50" }]
urls = { Homepage = "http://github.com/justintime50/github-archive" }
scripts = { github-archive = "github_archive.cli:main" }
dependencies = ["PyGithub == 2.9.*", "woodchips == 2.*"]
optional-dependencies = { dev = [
"bandit == 1.9.*",
"build == 1.3.*",
"mypy == 1.18.*",
"pytest == 9.*",
"pytest-cov == 7.*",
"ruff == 0.14.*",
] }
[tool.setuptools.dynamic]
version = { attr = "github_archive._version.__version__" }
[tool.setuptools.packages.find]
exclude = ["test"]
[tool.setuptools.package-data]
github_archive = ["py.typed"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["I", "E501"]
[tool.mypy]
disable_error_code = "import-untyped"