Restructured text for pypi

This commit is contained in:
ixaxaar 2018-04-28 16:06:35 +05:30
parent 2e24452dfa
commit bcb1bf901e
2 changed files with 1413 additions and 2 deletions

1411
README.rst Normal file

File diff suppressed because it is too large Load Diff

View File

@ -16,13 +16,13 @@ from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='dnc',
version='0.0.8',
version='0.0.9',
description='Differentiable Neural Computer, for Pytorch',
long_description=long_description,