mirror of
https://github.com/openai/CLIP.git
synced 2026-02-19 18:59:58 +00:00
21 lines
477 B
Python
21 lines
477 B
Python
import os
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="clip",
|
|
py_modules=["clip"],
|
|
version="1.0",
|
|
description="",
|
|
author="OpenAI",
|
|
packages=find_packages(exclude=["tests*"]),
|
|
install_requires=[
|
|
line.strip()
|
|
for line in open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
|
|
if line.strip() and not line.startswith("#")
|
|
],
|
|
include_package_data=True,
|
|
extras_require={'dev': ['pytest']},
|
|
)
|