-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (25 loc) · 804 Bytes
/
pyproject.toml
File metadata and controls
26 lines (25 loc) · 804 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 = [
"hatchling >= 1.26",
"requests >= 2.32.4"
]
build-backend = "hatchling.build"
[project]
name = "ghtoolscraper_rchotacode"
version = "0.0.1"
authors = [
{ name="Ronan Chota", email="ri03@outlook.com" },
]
description = "This package scrapes github repositories and formats them for agents to request file contents without filling model context with uncessary files and requiring large datasets"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
packages = ["src/ghtoolscraper_rchotacode"]
[project.urls]
Homepage = "https://github.com/rchotacode/GitHubScraper"
Issues = "https://github.com/rchotacode/GitHubScraper/issues"