main
Kye 2 years ago
parent 0fef44f298
commit fd4689aa5b

@ -5,17 +5,13 @@ openai
langchain==0.0.101
torch==1.13.1
torchvision==0.14.1
asyncio
nest_asyncio
# faiss
bs4
playwright
duckduckgo_search
faiss-cpu
wget==3.2
accelerate
addict

@ -0,0 +1,29 @@
from setuptools import setup, find_packages
setup(
name = 'swarms',
packages = find_packages(exclude=[]),
version = '0.0.1',
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=[
'guidance',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)
Loading…
Cancel
Save