Skip to content

Commit

Permalink
🔖 (release) release first version
Browse files Browse the repository at this point in the history
  • Loading branch information
imgarylai committed Feb 9, 2019
1 parent b2c4b8d commit c6deae8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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']},
Expand All @@ -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',
Expand Down

0 comments on commit c6deae8

Please sign in to comment.