Skip to content

Commit 5a45225

Browse files
authored
Update setup.py
1 parent 2a33880 commit 5a45225

File tree

1 file changed

+1
-35
lines changed

1 file changed

+1
-35
lines changed

setup.py

+1-35
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,3 @@
1-
# from distutils.core import setup
2-
3-
# setup(
4-
# name = 'clipcrop', # How you named your package folder (MyLib)
5-
# packages = ['clipcrop'], # Chose the same as "name"
6-
# version = '1.0', # Start with a small number and increase it with every change you make
7-
# license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
8-
# description = "Extract sections from your image by using OpenAI CLIP and Facebooks Detr implemented on HuggingFace Transformers", # Give a short description about your library
9-
# author = 'Vishnu N', # Type in your name
10-
# author_email = '[email protected]', # Type in your E-Mail
11-
# url = 'https://github.com/Vishnunkumar/clipcrop/', # Provide either the link to your github or to your website
12-
# download_url ='https://github.com/Vishnunkumar/clipcrop/archive/refs/tags/v-1.0.tar.gz', # I explain this later on
13-
# keywords = ['Documents', 'Machine learning', 'NLP', 'Deep learning', 'Computer Vision'], # Keywords that define your package best
14-
# install_requires = [ # I get to this in a second
15-
# 'transformers',
16-
# 'torch',
17-
# 'pillow',
18-
# 'timm',
19-
# 'numpy',
20-
# 'opencv-python'
21-
# ],
22-
# classifiers=[
23-
# 'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
24-
# 'Intended Audience :: Developers', # Define that your audience are developers
25-
# 'Topic :: Software Development :: Build Tools',
26-
# 'License :: OSI Approved :: MIT License', # Again, pick a license
27-
# 'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
28-
# 'Programming Language :: Python :: 3.4',
29-
# 'Programming Language :: Python :: 3.5',
30-
# 'Programming Language :: Python :: 3.6',
31-
# ],
32-
# )
33-
34-
351
import setuptools
362

373
with open("README.md", "r") as fh:
@@ -50,7 +16,7 @@
5016

5117
setuptools.setup(
5218
name="clipcrop",
53-
version="2.4.2",
19+
version="2.4.3",
5420
author="Vishnu Nandakumar",
5521
author_email="[email protected]",
5622
description="Extract sections from your image by using OpenAI CLIP and Facebooks Detr implemented on HuggingFace Transformers",

0 commit comments

Comments
 (0)