You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/pyproject.toml

97 lines
2.2 KiB

[build-system]
11 months ago
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "swarms"
10 months ago
version = "4.5.8"
description = "Swarms - Pytorch"
license = "MIT"
authors = ["Kye Gomez <kye@apac.ai>"]
homepage = "https://github.com/kyegomez/swarms"
documentation = "https://swarms.apac.ai"
10 months ago
readme = "README.md"
repository = "https://github.com/kyegomez/swarms"
keywords = ["artificial intelligence", "deep learning", "optimizers", "Prompt Engineering", "swarms", "agents"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10"
]
11 months ago
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
10 months ago
torch = ">=2.1.1,<3.0"
10 months ago
transformers = "4.39.0"
10 months ago
asyncio = ">=3.4.3,<4.0"
einops = "0.7.0"
google-generativeai = "0.3.1"
langchain = "0.1.13"
10 months ago
langchain-core = "0.1.33"
langchain-community = "0.0.29"
10 months ago
langchain-experimental = "0.0.55"
faiss-cpu = "1.7.4"
backoff = "2.2.1"
datasets = "*"
optimum = "1.15.0"
10 months ago
supervision = "0.19.0"
opencv-python = "4.9.0.80"
diffusers = "*"
10 months ago
anthropic = "0.21.3"
11 months ago
toml = "*"
pypdf = "4.1.0"
accelerate = "*"
sentencepiece = "0.1.98"
httpx = "0.24.1"
10 months ago
tiktoken = "0.5.2"
ratelimit = "2.2.1"
11 months ago
loguru = "0.7.2"
huggingface-hub = "*"
10 months ago
pydantic = "2.6.4"
tenacity = "8.2.3"
Pillow = "9.4.0"
10 months ago
chromadb = "0.4.24"
termcolor = "2.2.0"
torchvision = "0.16.1"
rich = "13.5.2"
bitsandbytes = "*"
sentence-transformers = "*"
peft = "*"
psutil = "*"
timm = "*"
sentry-sdk = "*"
10 months ago
[tool.poetry.dev-dependencies]
black = "23.3.0"
[tool.poetry.group.lint.dependencies]
ruff = ">=0.0.249,<0.3.5"
types-toml = "^0.10.8.1"
types-pytz = "^2023.3.0.0"
black = "^23.1.0"
types-chardet = "^5.0.4.6"
mypy-protobuf = "^3.0.0"
[tool.ruff]
1 year ago
line-length = 70
10 months ago
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
select = ["E4", "E7", "E9", "F"]
ignore = []
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
[tool.black]
1 year ago
line-length = 70
target-version = ['py38']
preview = true
1 year ago
[tool.poetry.scripts]
swarms = 'swarms.cli._cli:main'