Skip to content

Commit

Permalink
Prepared for PyPI publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
batzner committed Aug 30, 2017
1 parent 06e4063 commit e0fcdbc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from distutils.core import setup

setup(
name="tensorlm",
packages=["tensorlm"],
version="0.1",
description="TensorFlow wrapper for deep neural text generation on character or word level "
"with RNNs / LSTMs",
author="Kilian Batzner",
author_email="info@kilians.net",
url="https://github.com/batzner/tensorlm",
download_url="https://github.com/batzner/tensorlm/archive/0.1.tar.gz",
keywords=["tensorflow", "text", "generation", "language", "model", "rnn", "lstm", "deep",
"neural", "char", "word"],
classifiers=[],
)

0 comments on commit e0fcdbc

Please sign in to comment.