Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pip install --upgrade pip
echo "Installing TensorPy..."
pip install -r requirements.txt
pip install -r requirements.txt --upgrade
python setup.py install
value="$(uname)"
if [ $value == "Linux" ]
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
requests>=2.13.0
six>=1.10.0
Pillow>=4.1.1
BeautifulSoup>=3.2.1
requests==2.18.1
six==1.10.0
Pillow==4.1.1
BeautifulSoup==3.2.1
-e .
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@

setup(
name='tensorpy',
version='1.0.17',
version='1.0.18',
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',
'requests==2.18.1',
'six==1.10.0',
'Pillow==4.1.1',
'BeautifulSoup==3.2.1',
],
packages=['tensorpy'],
entry_points={
Expand Down