pypi repository

This commit is contained in:
Rico Sennrich 2018-05-17 13:08:24 +01:00
parent f61c957926
commit bc6ec696e0
2 changed files with 9 additions and 3 deletions

View File

@ -8,7 +8,11 @@ on Neural Machine Translation with subword units (see below for reference).
INSTALLATION
------------
install via pip:
install via pip (from PyPI):
pip install subword-nmt
install via pip (from Github):
pip install https://github.com/rsennrich/subword-nmt/archive/master.zip

View File

@ -1,6 +1,6 @@
from setuptools import setup, find_packages
import unittest
import codecs
def test_suite():
test_loader = unittest.TestLoader()
@ -11,8 +11,10 @@ def test_suite():
setup(
name='subword_nmt',
version='0.3',
version='0.3.1',
description='Unsupervised Word Segmentation for Neural Machine Translation and Text Generation',
long_description= (codecs.open("README.md", encoding='utf-8').read() +
"\n\n" + codecs.open("CHANGELOG.md", encoding='utf-8').read()),
url='https://github.com/rsennrich/subword-nmt',
author='Rico Sennrich',
license='MIT',