fabric/pyproject.toml

73 lines
1.6 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "fabric"
version = "0.2.0"
description = "Fabric - AI framework for human augmentation"
authors = [
"Daniel Miessler <https://github.com/danielmiessler>",
"Jonathan Dunn <https://github.com/xssdoctor>",
"Scott Behrens <https://github.com/sbehrens>",
]
packages = [
{ include = "installer"}
]
[tool.poetry.dependencies]
python = "^3.10"
2024-02-28 15:17:57 +00:00
crewai = "^0.11.0"
unstructured = "0.10.25"
pyowm = "3.3.0"
tools = "^0.1.9"
langchain-community = "^0.0.24"
2024-03-03 13:11:21 +00:00
google-api-python-client = "^2.120.0"
isodate = "^0.6.1"
youtube-transcript-api = "^0.6.2"
2024-03-03 13:42:40 +00:00
pydub = "^0.25.1"
2024-03-05 19:48:07 +00:00
ollama = "^0.1.7"
anthropic = "^0.18.1"
2024-03-13 17:02:21 +00:00
pyperclip = "^1.8.2"
2024-03-13 20:16:18 +00:00
python-dotenv = "^1.0.1"
2024-03-13 20:24:59 +00:00
jwt = "^1.3.1"
flask = "^3.0.2"
2024-03-13 21:08:09 +00:00
helpers = "^0.2.0"
[tool.poetry.group.cli.dependencies]
pyyaml = "^6.0.1"
requests = "^2.31.0"
pyperclip = "^1.8.2"
python-socketio = "^5.11.0"
websocket-client = "^1.7.0"
flask = "^3.0.2"
flask-sqlalchemy = "^3.1.1"
flask-login = "^0.6.3"
flask-jwt-extended = "^4.6.0"
python-dotenv = "^1.0.1"
openai = "^1.11.0"
flask-socketio = "^5.3.6"
flask-sock = "^0.7.0"
gunicorn = "^21.2.0"
gevent = "^23.9.1"
2024-03-05 19:48:07 +00:00
httpx = ">=0.25.2,<0.26.0"
tqdm = "^4.66.1"
[tool.poetry.group.server.dependencies]
requests = "^2.31.0"
openai = "^1.12.0"
flask = "^3.0.2"
python-dotenv = "^1.0.1"
jwt = "^1.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Creates python "binaries"
[tool.poetry.scripts]
fabric = 'installer:cli'
fabric-api = 'installer:run_api_server'
fabric-webui = 'installer:run_webui_server'
2024-03-14 14:43:52 +00:00
ts = 'installer:main_ts'
yt = 'installer:main_yt'
save = 'installer:main_save'