-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
54 lines (48 loc) · 1.29 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
from distutils.core import setup
from subprocess import getoutput
import setuptools
def get_version_tag() -> str:
try:
version = os.environ["CLIP_TEXT_DECODER_VERSION"]
except KeyError:
version = getoutput("git describe --tags --abbrev=0")
return version
setup(
name="clip-text-decoder",
version=get_version_tag(),
author="Frank Odom",
author_email="frank.odom.iii@gmail.com",
url="https://github.com/fkodom/clip-text-decoder",
packages=setuptools.find_packages(exclude=["tests"]),
description="Generate text captions for images from their CLIP embeddings.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"evaluate",
"gdown",
"numpy",
"pytorch-lightning",
"spacy",
"torch>=1.11",
"torchdata>=0.3.0",
"torchvision",
"transformers",
"wget",
],
extras_require={
"test": [
"black",
"flake8",
"isort",
"pre-commit",
"pytest",
"pytest-cov",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)