2018-05-16 13:44:24 +03:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
|
|
def test_suite():
|
|
|
|
test_loader = unittest.TestLoader()
|
|
|
|
test_suite = test_loader.discover('subword_nmt/tests', pattern='test_*.py')
|
|
|
|
|
|
|
|
return test_suite
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='subword_nmt',
|
|
|
|
version='0.3',
|
|
|
|
description='Unsupervised Word Segmentation for Neural Machine Translation and Text Generation',
|
|
|
|
url='https://github.com/rsennrich/subword-nmt',
|
|
|
|
author='Rico Sennrich',
|
|
|
|
license='MIT',
|
|
|
|
test_suite='setup.test_suite',
|
|
|
|
packages=find_packages(),
|
|
|
|
entry_points={
|
2018-05-16 18:32:55 +03:00
|
|
|
'console_scripts': ['subword-nmt=subword_nmt.subword_nmt:main'],
|
2018-05-16 13:44:24 +03:00
|
|
|
},
|
|
|
|
include_package_data=True
|
|
|
|
)
|