summaryrefslogtreecommitdiff
path: root/continuedev/pyproject.toml
blob: af6ff04580de1b228d51733cea37c9c715f5893b (plain)
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
[tool.poetry]
name = "continuedev"
version = "0.1.1"
description = ""
authors = ["Nate Sesti <sestinj@gmail.com>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9"
diff-match-patch = "^20230430"
fastapi = "^0.95.1"
typer = "^0.7.0"
openai = "^0.27.5"
boltons = "^23.0.0"
pydantic = "^1.10.7"
uvicorn = "^0.21.1"
python-dotenv = "^1.0.0"
nest-asyncio = "^1.5.6"
websockets = "^11.0.2"
urllib3 = "1.26.15"
gpt-index = "^0.6.8"
posthog = "^3.0.1"
tiktoken = "^0.4.0"

[tool.poetry.scripts]
typegen = "src.continuedev.models.generate_json_schema:main" 

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"