Skip to content

Commit

Permalink
req updated
Browse files Browse the repository at this point in the history
  • Loading branch information
qubvel committed Dec 21, 2018
1 parent 36391fa commit 6827a82
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
keras>=2.1.4
scikit-image>=0.14.1
scikit-image
image-classifiers==0.1.0rc0
22 changes: 12 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,25 @@
REQUIRES_PYTHON = '>=3.0.0'
VERSION = None

# What packages are required for this module to be executed?
REQUIRED = [
'keras>=2.1.0', 'scikit-image', 'image-classifiers==0.1.0rc0'
]

# What packages are optional?
EXTRAS = {
# 'fancy feature': ['django'],
}

# The rest you shouldn't have to touch too much :)
# ------------------------------------------------
# Except, perhaps the License and Trove Classifiers!
# If you do change the License, remember to change the Trove Classifier for that!

here = os.path.abspath(os.path.dirname(__file__))

# What packages are required for this module to be executed?
try:
with open(os.path.join(here, 'requirements.txt'), encoding='utf-8') as f:
REQUIRED = f.read().split('\n')
except:
REQUIRED = []

# What packages are optional?
EXTRAS = {
# 'fancy feature': ['django'],
}

# Import the README and use it as the long-description.
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
try:
Expand Down

0 comments on commit 6827a82

Please sign in to comment.