-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 1.04 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
[tool.poetry]
name = "aigents"
version = "0.12.0"
description = "Adapters for Large Language Models and Generative Pre-trained Transformers APIs"
authors = ["Vagner Bessa <bessavagner@gmail.com>"]
license = "GPL-3.0-only"
readme = "README.md"
packages = [{include = "aigents", from = "src"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules"
]
repository = "https://github.com/bessavagner/aigents.git"
[tool.poetry.dependencies]
python = "^3.10"
openai = "^1.12.0"
tiktoken = "^0.6.0"
python-dotenv = "^1.0.1"
tomlkit = "^0.12.4"
pillow = "^10.2.0"
g4f = {extras = ["all"], version = "^0.2.4.1"}
spacy = "^3.7.4"
pandas = "^2.2.2"
scipy = "^1.13.0"
nltk = "^3.8.1"
google-generativeai = "^0.5.4"
pypdf = "^5.0.0"
[tool.poetry.group.dev.dependencies]
ipython = "^8.22.1"
ipykernel = "^6.29.2"
tomlkit = "^0.12.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"