-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.41 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 = "forklet"
version = "0.1.2"
description = "Download any file or folder from any GitHub repo by branch, tag, or commit with glob pattern filtering."
readme = "README.md"
license = {file = "LICENSE"}
authors = [{ name = "AllDotPy", email = "hello@alldotpy.com" }]
maintainers = [{ name = "#Einswilli", email = "einswilligoeh@email.com" }]
requires-python = ">=3.10"
keywords = [
"forklet", "CI/CD", "github Downloader", "github-files",
"pipelines", "github clone"
]
dependencies = [
"aiofiles>=24.1.0",
"click>=8.2.1",
"httpx>=0.28.1",
"pydantic>=2.11.9",
"pygithub>=2.8.1",
"python-dotenv>=1.1.1",
"rich>=14.1.0",
"tqdm>=4.67.1",
]
[dependency-groups]
dev = [
"black",
"mypy",
"twine>=6.2.0",
"uv",
"build",
"pytest>=8.4.0",
"mkdocs>=1.6.1",
"setuptools>=80.8.0",
"mkdocs-material>=9.6.14",
"mkdocs-static-i18n>=1.3.0",
"pytest-asyncio>=1.2.0",
]
[project.scripts]
forklet = "forklet.__main__:main"
[project.urls]
# Homepage = "https://alldotpy.github.io/Forklet"
Repository = "https://github.com/AllDotPy/Forklet"
# Documentation = "https://alldotpy.github.io/Forklet"
Tracker = "https://github.com/AllDotPy/Forklet/issues"
[tool.pytest.ini_options]
markers = [
"asyncio: asyncio mark",
]
[tool.setuptools]
packages = ["forklet"]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"