-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (23 loc) · 721 Bytes
/
pyproject.toml
File metadata and controls
26 lines (23 loc) · 721 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ghgrab"
version = "1.3.2"
description = "Download specific files and folders from GitHub repositories without cloning"
authors = [{name = "abhixdd"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.7"
keywords = ["github", "download", "cli", "tui"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/abhixdd/ghgrab"
Repository = "https://github.com/abhixdd/ghgrab"
[project.scripts]
ghgrab = "ghgrab:main"