-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
35 lines (33 loc) · 904 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
24
25
26
27
28
29
30
31
32
33
34
35
#from distutils.core import setup, find_packages
from setuptools import setup, find_packages
setup(
name="lm-nav",
version="1.0",
description="Source code for the LMNav.",
author="Błażej Osiński & Dhruv Shah",
packages=['lm_nav'],
install_requires=[
"networkx==2.6.3",
"h5py==3.7.0",
"matplotlib==3.5.2",
"numpy==1.21.6",
"pillow",
"pyyaml",
"utm==0.7.0",
"openai==0.20.0",
"jupyter==1.0.0",
"opencv-python==4.6.0.66",
"torch",
"torchaudio",
"torchvision",
"ftfy==6.1.1",
"regex==2022.6.2",
"tqdm==4.64.0",
"clip @ git+https://github.com/openai/CLIP.git",
"spacy==3.3.1",
"gdown==4.5.1",
],
package_data={'': ['base.css.html', 'bgraph.js']},
include_package_data=True,
extras_require={'dev': ['pytest']},
)