From fd4689aa5b53936d93cada3d524ce3b62f9e76c6 Mon Sep 17 00:00:00 2001 From: Kye Date: Mon, 26 Jun 2023 18:18:05 -0400 Subject: [PATCH] setup py --- requirements.txt | 4 ---- setup.py | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 4 deletions(-) create mode 100644 setup.py diff --git a/requirements.txt b/requirements.txt index cd7aa9f5..d1cc36b9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..390ad7b0 --- /dev/null +++ b/setup.py @@ -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', + ], +) \ No newline at end of file