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.
29 lines
751 B
29 lines
751 B
2 years ago
|
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',
|
||
|
],
|
||
|
)
|