forked from facebookresearch/ImageBind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 775 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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(),
package_data={
'imagebind': ['bpe/bpe_simple_vocab_16e6.txt.gz'],
},
description='A brief description of the package',
long_description=open('README.md', encoding='utf-8').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'],
)