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

93 lines
1.8 KiB

[build-system]
11 months ago
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "swarms"
version = "4.8.7"
description = "Swarms - Pytorch"
license = "MIT"
authors = ["Kye Gomez <kye@apac.ai>"]
homepage = "https://github.com/kyegomez/swarms"
9 months ago
documentation = "https://swarms.apac.ai"
readme = "README.md"
repository = "https://github.com/kyegomez/swarms"
9 months ago
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",
9 months ago
"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, <5.0.0"
10 months ago
asyncio = ">=3.4.3,<4.0"
langchain-community = "0.0.29"
10 months ago
langchain-experimental = "0.0.55"
backoff = "2.2.1"
11 months ago
toml = "*"
pypdf = "4.1.0"
ratelimit = "2.2.1"
11 months ago
loguru = "0.7.2"
10 months ago
pydantic = "2.6.4"
tenacity = "8.2.3"
Pillow = "10.3.0"
psutil = "*"
sentry-sdk = "*"
python-dotenv = "*"
accelerate = "0.28.0"
9 months ago
opencv-python = "^4.9.0.80"
9 months ago
PyYAML = "*"
docstring_parser = "0.16"
[tool.poetry.group.lint.dependencies]
9 months ago
black = "^23.1.0"
ruff = ">=0.0.249,<0.3.5"
types-toml = "^0.10.8.1"
types-pytz = "^2023.3.0.0"
types-chardet = "^5.0.4.6"
mypy-protobuf = "^3.0.0"
9 months ago
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
termcolor = "^2.4.0"
pandas = "^2.2.2"
fastapi = "^0.110.1"
9 months ago
[tool.ruff]
9 months ago
line-length = 75
9 months ago
[tool.black]
9 months ago
target-version = ["py38"]
line-length = 75
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
)/
'''