From ca041f95509e1f9ef9ae38baa3f1866477294363 Mon Sep 17 00:00:00 2001 From: Vu Anh Date: Fri, 25 Dec 2020 12:13:48 +0700 Subject: [PATCH] GH-351: Release v1.3.1a0 --- setup.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 32f5772a..bfd65132 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -import io import os from setuptools import setup @@ -9,9 +6,6 @@ with open(version_file) as fh: version = fh.read().strip() -with io.open('README.md', encoding="utf-8") as readme_file: - readme = readme_file.read() - install_requires = [ 'Click>=6.0', 'python-crfsuite>=0.9.6', @@ -38,7 +32,8 @@ name='underthesea', version=version, description="Vietnamese NLP Toolkit", - long_description=readme, + long_description=open("README.md", encoding="utf-8").read(), + long_description_content_type="text/markdown", author="Vu Anh", author_email='anhv.ict91@gmail.com', url='https://github.com/undertheseanlp/underthesea',