From c6deae82ae164ad995e899a5a3f4972452f1efda Mon Sep 17 00:00:00 2001 From: Gary Lai Date: Sat, 9 Feb 2019 02:38:44 -0500 Subject: [PATCH] :bookmark: (release) release first version --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 3c05c15..3be8e6d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ MAJOR = 0 MINOR = 1 MICRO = 0 -ISRELEASED = False +ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) # Return the git revision as a string @@ -125,6 +125,9 @@ def setup_package(): author='Gary Lai', author_email='gary@gary-lai.com', description='BERT token level embedding with MxNet', + long_description=open('README.md', 'r').read(), + long_description_content_type='text/markdown', + keywords='bert nlp mxnet gluonnlp machine deep learning sentence encoding embedding', license='ALv2', packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES), package_data={'': ['*.txt', '*.json']}, @@ -133,7 +136,7 @@ def setup_package(): 'gluonnlp==0.5.0', ], extras_require={ - 'cu92': ['mxnet-cu92==1.3.0'] + 'gpu': ['mxnet-cu92==1.3.0'] }, tests_require=[ 'pytest',