Skip to content

Commit

Permalink
Merge pull request #23 from KieranLitschel/develop
Browse files Browse the repository at this point in the history
Fixed bugs in setup.py
  • Loading branch information
KieranLitschel authored Jan 24, 2021
2 parents 321a8ad + b08381a commit 9a98ecc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
long_description = fh.read()

REQUIRED_PCKGS = [
"tensorflow>=2.0.0"
"tensorflow>=2.0.0",
"datasets",
"pandas",
"numpy>=1.16.5",
Expand All @@ -14,7 +14,7 @@

setuptools.setup(
name="xswem",
version="0.1.0",
version="0.1.1",
author="Kieran Litschel",
author_email="kieran.litschel@outlook.com",
description="A simple and explainable deep learning model for NLP.",
Expand All @@ -31,4 +31,7 @@
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires='>=3.6',
install_requires=REQUIRED_PCKGS,
keywords='nlp fast machine learning deep simple tensorflow model word embeddings keras glove explainable swem '
'global local explanations'
)

0 comments on commit 9a98ecc

Please sign in to comment.