Skip to content

Commit

Permalink
2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rom1504 authored Jul 24, 2021
1 parent 30d84ff commit 43f8820
Showing 1 changed file with 26 additions and 16 deletions.
42 changes: 26 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,30 @@

import pkg_resources
from setuptools import setup, find_packages
from pathlib import Path

setup(
name="clip-anytorch",
py_modules=["clip"],
version="2.1.0",
description="",
author="OpenAI",
packages=find_packages(exclude=["tests*"]),
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
include_package_data=True,
extras_require={'dev': ['pytest']},
)
if __name__ == "__main__":

# Read description from README
with Path(Path(__file__).parent, "README.md").open(encoding="utf-8") as file:
long_description = file.read()

setup(
name="clip-anytorch",
long_description=long_description,
long_description_content_type="text/markdown",
description=long_description.split("\n")[0],
url="https://github.com/rom1504/CLIP",
py_modules=["clip"],
version="2.2.0",
author="OpenAI",
packages=find_packages(exclude=["tests*"]),
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
include_package_data=True,
extras_require={'dev': ['pytest']},
)

0 comments on commit 43f8820

Please sign in to comment.