From 108102219ca6aa8c397de94412203931cbc8de53 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 22 Nov 2016 22:22:13 -0400 Subject: [PATCH] Don't supply the entire license file to PyPI, only the name. --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b2396e91eb..e2ede2177b 100644 --- a/setup.py +++ b/setup.py @@ -95,8 +95,6 @@ with open('README.rst') as f: readme = f.read() with open('HISTORY.rst') as f: history = f.read() -with open('LICENSE') as f: - license = f.read() setup( author='Roberto Rosario', @@ -120,7 +118,7 @@ setup( description='Free Open Source Electronic Document Management System', include_package_data=True, install_requires=install_requires, - license=license, + license='Apache 2.0', long_description=readme + '\n\n' + history, name=PACKAGE_NAME, packages=find_packages(PACKAGE_DIR),