-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (56 loc) · 1.87 KB
/
setup.py
File metadata and controls
59 lines (56 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
from setuptools import setup, find_packages
"""
TODO
- copy or link `python` folder to `transformation_invariant_image_search`
"""
def readme():
with open('README.md') as f:
return f.read()
setup(
name='transformation-invariant-image-search',
version='0.0.1',
description='a reverse image search algorithm which performs 2D affine '
'transformation-invariant partial image-matching in sublinear time with '
'respect to the number of images in our database.',
long_description=readme(),
long_description_content_type="text/markdown",
author='Tom Murphy',
author_email='murphyt7@tcd.ie',
maintainer='Rachmadani Haryono',
maintainer_email='foreturiga@gmail.com',
license='MIT',
url='https://github.com/pippy360/transformationInvariantImageSearch',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>=3.6',
install_requires=[
'hiredis',
'numpy',
'redis',
'scikit-learn',
'scipy',
'tqdm>=4.29.1',
],
entry_points={
'console_scripts': [
'transformation-invariant-image-search = transformation_invariant_image_search.main:main']
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Utilities'
]
)