-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 862 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 862 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
[project]
name = "github-bulk-clone"
version = "0.0.3"
authors = [
{ name="yolowex", email="yolowex@gmail.com" },
]
description = "A script that script that helps get a backup of all your github projects."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [
"requests >= 2.32.0"
]
[project.urls]
Homepage = "https://github.com/awesome-open-source-projects/github-bulk-clone"
Issues = "https://github.com/awesome-open-source-projects/github-bulk-clone/issues"
[build-system]
requires = ["hatchling >= 1.26.3", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/github_bulk_clone"]
[project.scripts]
blkclone = "github_bulk_clone:__entry.main"