-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 918 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
38
39
40
41
42
43
44
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "demogpt"
version = "1.2.7"
description = "Autonomous AI Agent for Gen-AI App Generation "
authors = ["Melih Unsal <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/melih-unsal/DemoGPT"
packages = [
{ include = "demogpt" }
]
[tool.poetry.dependencies]
python = "^3.8.1"
pydantic = "<2.0.0"
streamlit = "*"
altair = "<5"
langchain = "*"
langchain_experimental = "*"
langchain_openai = "*"
openai = "*"
tiktoken = "*"
python-dotenv = "*"
unstructured = "*"
pdf2image = "*"
pdfminer-six = "*"
autopep8 = "*"
numexpr = "*"
flake8 = "*"
duckduckgo-search = "6.3.2"
wikipedia = "1.4.0"
pyowm = "3.3.0"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
demogpt = "demogpt.cli:main"
[tool.poetry.urls]
"Homepage" = "https://github.com/melih-unsal/DemoGPT"