forked from TensorPy/TensorPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 757 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 757 Bytes
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
"""
The setup package to install TensorPy dependencies.
*> This does NOT include TensorFlow installation.
*> To install TensorFlow, use "./install.sh"
"""
from setuptools import setup, find_packages # noqa
setup(
name='tensorpy',
version='1.0.14',
url='http://tensorpy.com',
author='Michael Mintz',
author_email='@mintzworld',
maintainer='Michael Mintz',
description='Easy Image Classification with TensorFlow!',
license='The MIT License',
install_requires=[
'requests>=2.13.0',
'six>=1.10.0',
'Pillow>=4.1.1',
'BeautifulSoup>=3.2.1',
],
packages=['tensorpy'],
entry_points={
'console_scripts': [
'classify = tensorpy.classify:main',
],
},
)