-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (29 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
37 lines (29 loc) · 859 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
27
28
29
30
31
32
33
34
35
36
37
[tool.poetry]
name = "microagi-git"
version = "0.0.6"
description = "Git For Humans: Predictable, secure and precision tuned command-line assistant that translates natural language into Git commands."
authors = ["Sivan Grünberg <sivan@vitakka.co>"]
readme = "README.pypi.md"
packages = [
{ include = "agit" },
]
homepage = "https://github.com/microagi/agit"
keywords = ["agi", "microagi", "git", "assistant", "agent", "AI", "GPT"]
[tool.poetry.dependencies]
python = "^3.11"
openai = "^0.27.8"
requests = "^2.31.0"
pydantic = "^2.0.3"
python-dotenv = "^1.0.0"
colorama = "^0.4.6"
autopage = "^0.5.1"
pyparsing = "^3.1.1"
aiohttp = "^3.9.1"
gitpython = "^3.1.40"
[tool.poetry.scripts]
agit = "agit.main:async_main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"