forked from sweepai/sweep
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
63 lines (57 loc) · 1.38 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
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "sweepai"
version = "0.5.1"
description = "Sweep software chores"
authors = ["Kevin Lu", "William Zeng", "Luke Jagg"]
packages = [{ include = "sweepai" }]
classifiers = ["Programming Language :: Python :: 3.11"]
readme = "README.md"
[tool.poetry.urls]
repository = "https://github.com/sweepai/sweep"
"Community" = "https://discord.gg/sweep-ai"
documentation = "https://docs.sweep.dev"
homepage = "https://sweep.dev"
"Bug Tracker" = "https://github.com/sweepai/sweep/issues"
[tool.poetry.dependencies]
python = "^3.10"
PyGithub = "1.58.2"
loguru = "^0.6.0"
requests = "^2.28.2"
urllib3 = "<2.0.0"
gradio = "^3.35.2"
config-path = "^1.0.3"
typer = "^0.9.0"
tabulate = "^0.9.0"
GitPython = "^3.1.31"
pyyaml = "^6.0"
[tool.poetry.dev-dependencies]
black = "^23.1.0"
commit5 = "^0.1.1"
jupyter = "^1.0.0"
ipykernel = "^6.23.1"
build = "^0.10.0"
flake8 = "^6.0.0"
nptyping = "^2.5.0"
pre-commit = "^3.2.0"
# Backend dependencies
fastapi = "^0.94.1"
uvicorn = "^0.21.0"
openai = "^0.27.2"
slack-bolt = "^1.18.0"
pymongo = "^4.4.0"
redis = "^4.5.5"
google-search-results = "^2.4.2"
slack-sdk = "^3.21.3"
modal-client = "^0.49.2348"
anthropic = "^0.2.8"
tiktoken = "^0.3.2"
PyJWT = "^2.6.0"
backoff = "^2.2.1"
highlight-io = "0.5.0"
posthog = "^3.0.1"
tree-sitter = "^0.20.1"
[mypy]
check_untyped_defs = true
[tool.poetry.scripts]
sweep = "sweepai.app.cli:app"
sweepai = "sweepai.app.cli:app"