From a618517bb777958da839ab6ff2ea5c80a87c91b0 Mon Sep 17 00:00:00 2001 From: MRXLT Date: Tue, 17 Dec 2019 17:27:20 +0800 Subject: [PATCH] rm some file --- serving/server/LICENSE | 19 ------------------- serving/server/README.md | 1 - serving/server/setup.py | 5 ----- 3 files changed, 25 deletions(-) delete mode 100644 serving/server/LICENSE delete mode 100644 serving/server/README.md diff --git a/serving/server/LICENSE b/serving/server/LICENSE deleted file mode 100644 index 96f1555..0000000 --- a/serving/server/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2018 The Python Packaging Authority - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/serving/server/README.md b/serving/server/README.md deleted file mode 100644 index e6e0fcf..0000000 --- a/serving/server/README.md +++ /dev/null @@ -1 +0,0 @@ -This is a simple example package. diff --git a/serving/server/setup.py b/serving/server/setup.py index 8b84f84..dae5d33 100644 --- a/serving/server/setup.py +++ b/serving/server/setup.py @@ -14,9 +14,6 @@ import setuptools -with open("README.md", "r") as fh: - long_description = fh.read() - #read info info_py = './plsc_serving/__init__.py' info_content = open(info_py, 'r').readlines() @@ -31,8 +28,6 @@ setuptools.setup( author="MRXLT", author_email="xlt2024@gmail.com", description="package for plsc serving", - long_description=long_description, - long_description_content_type="text/markdown", url="https://github.com/PaddlePaddle/PLSC", packages=setuptools.find_packages(), classifiers=[ -- GitLab