-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (43 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
53 lines (43 loc) · 2.14 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
[build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[project]
name = "gittxt"
version = "1.7.5"
description = "Gittxt: Get text from Git repositories in AI-ready formats"
readme = "README.md"
requires-python = ">=3.9,!=3.9.7"
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", "python-dotenv>=0.21.1",]
[[project.authors]]
name = "Sandeep Paidipati"
email = "sandeep.paidipati@gmail.com"
[project.license]
text = "MIT"
[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.poetry]
include = [ "README.md", "LICENSE", "pyproject.toml", "src/gittxt/**/*.py",]
[[tool.poetry.packages]]
include = "gittxt"
from = "src"
[tool.pytest.ini_options]
testpaths = [ "tests",]
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
ruff = "^0.2.0"
black = "^24.0.0"
[tool.poetry.group.plugins.dependencies]
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"
streamlit = ">=1.44.1,<2.0.0"