|
|
@ -1,21 +1,10 @@
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
|
|
# from setuptools.command.install import install
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# class PostInstallCommand(install):
|
|
|
|
|
|
|
|
# """Post-installation for installation mode."""
|
|
|
|
|
|
|
|
# def run(self):
|
|
|
|
|
|
|
|
# install.run(self)
|
|
|
|
|
|
|
|
# # PUT YOUR POST-INSTALL SCRIPT HERE or CALL A FUNCTION
|
|
|
|
|
|
|
|
# import subprocess
|
|
|
|
|
|
|
|
# subprocess.check_call(["pip", "install", "git+https://github.com/IDEA-Research/GroundingDINO.git"])
|
|
|
|
|
|
|
|
# subprocess.check_call(["pip", "install", "git+https://github.com/facebookresearch/segment-anything.git"])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
setup(
|
|
|
|
name = 'swarms',
|
|
|
|
name = 'swarms',
|
|
|
|
packages = find_packages(exclude=[]),
|
|
|
|
packages = find_packages(exclude=[]),
|
|
|
|
version = '0.3.0',
|
|
|
|
version = '0.3.1',
|
|
|
|
license='MIT',
|
|
|
|
license='MIT',
|
|
|
|
description = 'Swarms - Pytorch',
|
|
|
|
description = 'Swarms - Pytorch',
|
|
|
|
author = 'Kye Gomez',
|
|
|
|
author = 'Kye Gomez',
|
|
|
|