|
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 |
| - |
35 | 1 | import setuptools
|
36 | 2 |
|
37 | 3 | with open("README.md", "r") as fh:
|
|
50 | 16 |
|
51 | 17 | setuptools.setup(
|
52 | 18 | name="clipcrop",
|
53 |
| - version="2.4.2", |
| 19 | + version="2.4.3", |
54 | 20 | author="Vishnu Nandakumar",
|
55 | 21 |
|
56 | 22 | description="Extract sections from your image by using OpenAI CLIP and Facebooks Detr implemented on HuggingFace Transformers",
|
|
0 commit comments