-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (79 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
90 lines (79 loc) · 2.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "gittxt"
version = "1.7.3"
description = "Gittxt: Get text from Git repositories in AI-ready formats"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Sandeep Paidipati", email = "sandeep.paidipati@gmail.com" }
]
requires-python = ">=3.9"
keywords = [
"llm-dataset", "text-extraction", "git-repos", "ai-preprocessing", "cli-tool", "nlp", "data-pipeline", "repo-analysis", "source-code", "github-scanner", "ai-ready"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Text Processing :: Linguistic",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Utilities"
]
dependencies = [
"click>=8.1.3",
"gitpython>=3.1.40",
"colorama>=0.4.6",
"binaryornot>=0.4.4",
"aiofiles>=23.2.1",
"aiohttp>=3.9.5",
"tiktoken>=0.9.0",
"humanize>=4.12.2",
"rich>=13.9.4",
"dotenv (>=0.9.9,<0.10.0)",
"fastapi (>=0.115.12,<0.116.0)",
"pydantic (>=2.11.2,<3.0.0)",
"python-multipart (>=0.0.20,<0.0.21)",
"uvicorn (>=0.34.0,<0.35.0)",
]
[project.urls]
Homepage = "https://github.com/sandy-sp/gittxt"
Repository = "https://github.com/sandy-sp/gittxt"
[project.scripts]
gittxt = "gittxt.cli:cli"
[tool.black]
line-length = 88
[tool.ruff]
line-length = 88
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.poetry]
packages = [
{ include = "gittxt", from = "src" }
]
include = [
"README.md",
"LICENSE",
"pyproject.toml",
"src/gittxt/**/*.py"
]
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
pytest-mock = "^3.0"
ruff = "^0.2.0"
black = "^24.0.0"
pytest-asyncio = "^0.21.0"
httpx = "^0.28.1"