-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.08 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
"""setup tools control"""
from setuptools import setup
version = "0.0.8"
reqs = ['tensorflow']
setup(
name="tfimgtools",
packages=['tfimgsort', 'test'],
setup_requires=['flake8'],
test_suite='test',
entry_points={
"console_scripts": ['tfimgsort = tfimgsort.tfimgsort:main']
},
version=version,
description="A tool for sorting images given a tensorflow model.",
long_description="A tool for sorting images given a tensorflow model.",
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Multimedia :: Graphics',
'Topic :: Utilities'
],
keyword='computer-vision tensorflow cli',
license='MIT',
install_requires=reqs,
author="Luke Duncan",
author_email="[email protected]",
url='https://github.com/lukejduncan/tfimgtools',
)