parent
0fef44f298
commit
fd4689aa5b
@ -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…
Reference in new issue