mirror of
https://github.com/facebookresearch/ImageBind.git
synced 2023-12-02 12:22:10 +03:00
20 lines
671 B
Python
20 lines
671 B
Python
from setuptools import setup, find_packages
|
|
|
|
with open('requirements.txt') as f:
|
|
required = f.read().splitlines()
|
|
|
|
setup(
|
|
name='imagebind',
|
|
version='0.1.0',
|
|
packages=find_packages(),
|
|
description='A brief description of the package',
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type="text/markdown",
|
|
url='https://github.com/facebookresearch/ImageBind',
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'License :: Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International',
|
|
],
|
|
install_requires=required,
|
|
dependency_links=['https://download.pytorch.org/whl/cu113'],
|
|
) |