-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (55 loc) · 1.93 KB
/
setup.py
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
"""Image Keyword Tool setuptools configuration."""
from setuptools import find_packages, setup
with open('README.md', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name="ikt",
description="Python tool to detect image content and make tags suggestions.",
long_description=readme,
long_description_content_type='text/markdown',
license='MIT',
author='Andrey Shpak',
author_email='ashpak@ashpak.ru',
url='https://github.com/insspb/ikt',
zip_safe=False,
install_requires=["click>=7.1.0"],
python_requires='>=3.7',
packages=find_packages(),
entry_points={'console_scripts': ['ikt = ikt.cli:main_cli']},
version='0.2.0',
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Other Audience",
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Image Recognition",
],
keywords=[
'image-recognition',
'image-classification',
'image-analysis',
'image-annotation-tool',
'image-recognition-tool',
'image',
'keywords',
'tags',
'recognition',
'classification',
'tool',
],
)