-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
74 lines (65 loc) · 1.89 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "gittxt"
version = "1.5.0"
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.8"
keywords = ["git", "text-extraction", "cli-tool", "AI", "LLM", "NLP", "repository", "machine-learning"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Text Processing :: Linguistic",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"click>=8.1.3",
"gitpython>=3.1.40",
"colorama>=0.4.6",
"python-dotenv>=1.0.0",
"binaryornot>=0.4.4",
"tqdm>=4.66.0"
]
[project.urls]
Repository = "https://github.com/sandy-sp/gittxt"
Homepage = "https://github.com/sandy-sp/gittxt"
[project.scripts]
gittxt = "gittxt.cli:main"
[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",
"MANIFEST.in",
"src/gittxt-logs/**",
"src/gittxt-outputs/**",
"src/gittxt/**/*.py"
]
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
pytest-mock = "^3.0"
ruff = "^0.2.0"
black = "^24.0.0"