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/setup.py

77 lines
1.8 KiB

2 years ago
from setuptools import setup, find_packages
setup(
name = 'swarms',
packages = find_packages(exclude=[]),
2 years ago
version = '0.2.0',
2 years ago
license='MIT',
description = 'Swarms - Pytorch',
author = 'Kye Gomez',
author_email = 'kye@apac.ai',
long_description_content_type = 'text/markdown',
url = 'https://github.com/kyegomez/swarms',
keywords = [
'artificial intelligence',
'deep learning',
'optimizers',
"Prompt Engineering"
],
install_requires=[
"transformers",
"openai",
2 years ago
"langchain",
"torch==1.13.1",
"torchvision==0.14.1",
"asyncio",
"nest_asyncio",
"bs4",
"playwright",
"duckduckgo_search",
"faiss-cpu",
"wget==3.2",
"accelerate",
"addict",
"albumentations",
"basicsr",
"controlnet-aux",
"diffusers",
"einops",
"gradio",
"imageio",
"imageio-ffmpeg",
"invisible-watermark",
"kornia",
"numpy",
"omegaconf",
"open_clip_torch",
"opencv-python",
"prettytable",
"safetensors",
"streamlit",
"test-tube",
"timm",
"torchmetrics",
"webdataset",
"yapf",
"wolframalpha",
"wikipedia",
"httpx",
"ggl",
"gradio_tools",
"arxiv",
"google-api-python-client",
"google-auth-oauthlib",
"google-auth-httplib2",
"beautifulsoup4",
"O365",
"pytube",
2 years ago
"pydub"
2 years ago
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)