Skip to content

Commit

Permalink
Added dependencies to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
batzner committed Aug 30, 2017
1 parent ba6aa48 commit 72d42ce
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
setup(
name="tensorlm",
packages=find_packages(exclude=["examples"]),
version="0.2",
version="0.3",
description="TensorFlow wrapper for deep neural text generation on character or word level "
"with RNNs / LSTMs",
long_description=long_description,
author="Kilian Batzner",
author_email="info@kilians.net",
license="MIT",
url="https://github.com/batzner/tensorlm",
download_url="https://github.com/batzner/tensorlm/archive/v0.2.tar.gz",
download_url="https://github.com/batzner/tensorlm/archive/v0.3.tar.gz",
keywords=["tensorflow", "text", "generation", "language", "model", "rnn", "lstm", "deep",
"neural", "char", "word"],
classifiers=[
Expand All @@ -29,4 +29,9 @@
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
],
install_requires=[
"numpy==1.13.1",
"nltk==3.2.4",
"python-dateutil==2.6.1",
],
)

0 comments on commit 72d42ce

Please sign in to comment.