-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.59 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
[project]
name = "gh-folder-download"
version = "1.0.1"
description = "A command line application (CLI) to download only a specific folder without downloading the full repository implemented with Python using Typer and GitHub API."
authors = [
{ name = "Leynier Gutiérrez González", email = "leynier41@gmail.com" },
]
maintainers = [
{ name = "Leynier Gutiérrez González", email = "leynier41@gmail.com" },
]
readme = "readme.md"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["github", "download", "folder", "cli"]
requires-python = ">=3.13"
dependencies = [
"aiohttp>=3.13.2",
"pydantic>=2.12.5",
"pygithub>=2.8.1",
"pyyaml>=6.0.3",
"requests>=2.32.5",
"rich>=14.2.0",
"typer>=0.21.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"ruff>=0.14.10",
"ty>=0.0.7",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --asyncio-mode=auto"
testpaths = ["tests"]
markers = [
"integration: marks tests as integration tests (require internet, may be slow)",
]
[project.urls]
homepage = "https://github.com/leynier/gh-folder-download"
repository = "https://github.com/leynier/gh-folder-download"
documentation = "https://github.com/leynier/gh-folder-download"
issues = "https://github.com/leynier/gh-folder-download/issues"
[project.scripts]
gh-folder-download = "gh_folder_download.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"