| @@ -2,18 +2,18 @@ | |||||
| # coding=utf-8 | # coding=utf-8 | ||||
| from setuptools import setup, find_packages | from setuptools import setup, find_packages | ||||
| with open('README.md') as f: | |||||
| with open('README.md', encoding='utf-8') as f: | |||||
| readme = f.read() | readme = f.read() | ||||
| with open('LICENSE') as f: | |||||
| with open('LICENSE', encoding='utf-8') as f: | |||||
| license = f.read() | license = f.read() | ||||
| with open('requirements.txt') as f: | |||||
| with open('requirements.txt', encoding='utf-8') as f: | |||||
| reqs = f.read() | reqs = f.read() | ||||
| setup( | setup( | ||||
| name='fastNLP', | name='fastNLP', | ||||
| version='0.0.1', | |||||
| version='0.0.3', | |||||
| description='fastNLP: Deep Learning Toolkit for NLP, developed by Fudan FastNLP Team', | description='fastNLP: Deep Learning Toolkit for NLP, developed by Fudan FastNLP Team', | ||||
| long_description=readme, | long_description=readme, | ||||
| license=license, | license=license, | ||||