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

50 lines
1.2 KiB

2 years ago
from setuptools import setup, find_packages
setup(
name = 'swarms',
packages = find_packages(exclude=[]),
version = '1.3.3',
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=[
2 years ago
'transformers',
'openai',
'langchain==0.0.240',
2 years ago
'asyncio',
'nest_asyncio',
'pegasusx',
'google-generativeai',
'oceandb',
'langchain-experimental',
2 years ago
'playwright',
'duckduckgo_search',
'faiss-cpu',
'wget',
2 years ago
'httpx',
'ggl',
'beautifulsoup4',
'pydantic',
'tenacity',
'celery',
'redis',
2 years ago
'google-search-results==2.4.2',
'Pillow',
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',
],
)