-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.08 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
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "autopack-tools"
version = "0.4.6"
repository = "https://github.com/AutoPackAI/autopack"
homepage = "https://autopack.ai"
description = "Package Manager for AI Agent tools"
authors = ["Erik Peterson <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "autopack" }]
[tool.poetry.scripts]
autopack = 'autopack.cli:main'
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
requests = "^2.31.0"
dataclasses-json = "^0.5.8"
urllib3 = "^1.26.16"
gitpython = "^3.1.31"
langchain = ">=0.0.215"
types-requests = "^2.31.0.2"
aiofiles = "^23.1.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 = "^6.0.0"
mypy = "^1.4.0"
isort = "^5.12.0"
pytest = "^7.3.2"
pytest-mock = "^3.11.1"
types-requests = "^2.31.0.1"
psycopg2 = "^2.9.6"
autoflake = "^2.2.0"
types-psycopg2 = "^2.9.21.10"
pipreqs = "^0.4.13"
gitpython = "^3.1.31"
pytest-asyncio = "^0.21.1"
openai = "^0.27.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120
[flake8]
max-line-length = 120