From b81361656a98358fb50172b43bbb7218685a94e9 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Mon, 2 May 2016 21:43:15 +0200 Subject: [PATCH] Don't add GPL to long_description --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index db7357b..dfe086e 100644 --- a/setup.py +++ b/setup.py @@ -7,9 +7,6 @@ version = '0.1.1' with open('README.rst') as readme: description = readme.read() + "\n\n" -with open('COPYING') as license: - description += license.read() - requires = ['Sphinx>=1.4', 'ipcalc>=1.99'] tests_requires = ['path.py>=8.2.1']