Skip to content

Commit 779c109

Browse files
authored
Update setup.py
1 parent eea654b commit 779c109

File tree

1 file changed

+4
-44
lines changed

1 file changed

+4
-44
lines changed

setup.py

Lines changed: 4 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
from distutils.core import setup
2-
from os import path
3-
4-
# The directory containing this file
5-
here = path.abspath(path.dirname(__file__))
6-
7-
setup(from distutils.core import setup
1+
from setuptools import setup
82
import pathlib
93

104

@@ -15,51 +9,17 @@
159
README = (HERE / "README.md").read_text()
1610

1711
setup(
18-
name = 'DeepImageSearch',
19-
packages = ['DeepImageSearch'],
20-
version = '0.7',
21-
license='MIT',
22-
description = 'Deep Image Search is an AI-based image search engine that includes deep transfor learning features Extraction and tree-based vectorized search.',
23-
long_description=README,
2412
long_description_content_type="text/markdown",
25-
author = 'Nilesh Verma',
26-
author_email = 'me@nileshverma.com',
27-
url = 'https://github.com/TechyNilesh/DeepImageSearch',
28-
download_url = 'https://github.com/TechyNilesh/DeepImageSearch/archive/refs/tags/v_07.tar.gz',
29-
keywords = ['Deep Image Search Engine', 'AI Image search', 'Image Search Python'],
30-
install_requires=[
31-
'annoy',
32-
'matplotlib',
33-
'pandas',
34-
'numpy',
35-
'tensorflow',
36-
'tqdm',
37-
'Pillow'
38-
],
39-
classifiers=[
40-
'Development Status :: 4 - Beta',
41-
'Intended Audience :: Developers',
42-
'Topic :: Software Development :: Build Tools',
43-
'License :: OSI Approved :: MIT License',
44-
'Programming Language :: Python :: 3',
45-
'Programming Language :: Python :: 3.4',
46-
'Programming Language :: Python :: 3.5',
47-
'Programming Language :: Python :: 3.6',
48-
'Programming Language :: Python :: 3.7',
49-
'Programming Language :: Python :: 3.8',
50-
'Programming Language :: Python :: 3.9',
51-
],
52-
)
5313
name = 'DeepImageSearch',
5414
packages = ['DeepImageSearch'],
55-
version = '0.6',
15+
version = '1.0',
5616
license='MIT',
5717
description = 'Deep Image Search is an AI-based image search engine that includes deep transfor learning features Extraction and tree-based vectorized search.',
58-
long_description=open('README.rst', encoding="utf8").read(),
18+
long_description=README,
5919
author = 'Nilesh Verma',
6020
author_email = 'me@nileshverma.com',
6121
url = 'https://github.com/TechyNilesh/DeepImageSearch',
62-
download_url = 'https://github.com/TechyNilesh/DeepImageSearch/archive/refs/tags/v_06.tar.gz',
22+
download_url = 'https://github.com/TechyNilesh/DeepImageSearch/archive/refs/tags/v_10.tar.gz',
6323
keywords = ['Deep Image Search Engine', 'AI Image search', 'Image Search Python'],
6424
install_requires=[
6525
'annoy',

0 commit comments

Comments
 (0)