-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.12 KB
/
pyproject.toml
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
[tool.poetry]
name = "icodes"
version = "0.1.4"
description = "LLM-powered Git archeology tool (a.k.a. Intelligent Commit Ontology Distiller and Enhanced Search)"
authors = ["Jordan Dimov <[email protected]>", "Bayo Ade <[email protected]>"]
license = "CC0-1.0"
readme = "README.md"
packages = [
{ include = "icodes.py" },
{ include = "icds/**/*.py" },
]
repository = "https://github.com/a115/iCODES"
homepage = "https://github.com/a115/iCODES"
documentation = "https://github.com/a115/iCODES"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
keywords = ["git", "llm", "archeology", "commit", "search"]
[tool.poetry.dependencies]
python = "^3.11"
typer = "^0.12.0"
gitpython = "^3.1.43"
loguru = "^0.7.2"
openai = "^1.14.3"
pydantic-settings = "^2.2.1"
tenacity = "^8.2.3"
tiktoken = "^0.6.0"
sqlmodel = "^0.0.16"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
ruff = "^0.3.5"
pytest = "^8.1.1"
[tool.poetry.scripts]
icodes = "icodes:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"