forked from CoinFabrik/geppetto
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.54 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
[build-system]
requires = ["poetry>=1.1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "geppetto"
version = "0.2.5"
authors = [
"Lucas Arbues <[email protected]>",
"Ignacio Peña <[email protected]>",
"Federico Patagua <[email protected]>",
"Arturo Beccar <[email protected]>",
"José Garcia Crosta <[email protected]>",
"David Weil <[email protected]>",
"Diego Kelyacoubian <[email protected]>",
"Sebastian Wain <[email protected]>",
"Carlos Sims <[email protected]>",
"Camila Gallo Garcia <[email protected]>"
]
description = "Geppetto is a sophisticated Slack bot that facilitates seamless interaction with multiple AI models, including OpenAI's ChatGPT, DALL-E, Claude and Google's Gemini model."
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Topic :: Chatbot",
]
[tool.poetry.dependencies]
python = "^3.9"
certifi = "^2024.2.2"
openai = "^1.4.0"
python-dotenv = "^1.0.0"
slack-bolt = "^1.18.1"
slack-sdk = "^3.26.1"
Pillow = "^11.0.0"
google-generativeai = "^0.8.1"
IPython = "^8.0.0"
unittest-xml-reporting = "^3.2.0"
anthropic = "^0.42.0"
[tool.poetry.scripts]
geppetto = "geppetto.main:main"
[project.urls]
Homepage = "https://github.com/Deeptechia/geppetto"
Issues = "https://github.com/Deeptechia/geppetto/issues"