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
44 lines (40 loc) · 1.2 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (40 loc) · 1.2 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
"""
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
from os import path
this_directory = path.abspath(path.dirname(__file__))
long_description = None
try:
with open(path.join(this_directory, 'README.md'), 'rb') as f:
long_description = f.read().decode('utf-8')
except IOError:
long_description = 'Easy Image Classification with TensorFlow!'
setup(
name='tensorpy',
version='1.4.1',
description='Easy Image Classification with TensorFlow!',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/TensorPy/TensorPy',
platforms=["Linux", "Unix", "Mac OS-X"],
author='Michael Mintz',
author_email='mdmintz@gmail.com',
maintainer='Michael Mintz',
license="MIT",
install_requires=[
'six',
'tensorflow>=1.14.0',
'requests>=2.22.0',
'Pillow>=6.1.0',
'BeautifulSoup4>=4.6.0',
],
packages=['tensorpy'],
entry_points={
'console_scripts': [
'classify = tensorpy.classify:main',
],
},
)