|
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 |
8 | 2 | import pathlib
|
9 | 3 |
|
10 | 4 |
|
|
15 | 9 | README = (HERE / "README.md").read_text()
|
16 | 10 |
|
17 | 11 | 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, |
24 | 12 | 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 |
| -) |
53 | 13 | name = 'DeepImageSearch',
|
54 | 14 | packages = ['DeepImageSearch'],
|
55 |
| - version = '0.6', |
| 15 | + version = '1.0', |
56 | 16 | license='MIT',
|
57 | 17 | 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, |
59 | 19 | author = 'Nilesh Verma',
|
60 | 20 | author_email = 'me@nileshverma.com',
|
61 | 21 | 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', |
63 | 23 | keywords = ['Deep Image Search Engine', 'AI Image search', 'Image Search Python'],
|
64 | 24 | install_requires=[
|
65 | 25 | 'annoy',
|
|
0 commit comments