From 0bee2e86f8b558874f70059e00e50954c57afd0f Mon Sep 17 00:00:00 2001 From: Costas Tyfoxylos Date: Wed, 6 Mar 2019 09:42:29 +0100 Subject: [PATCH] fixed extra files in the root of the environment --- setup.py | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/setup.py b/setup.py index 3123d3b..6d7eb86 100755 --- a/setup.py +++ b/setup.py @@ -20,18 +20,6 @@ open('dev-requirements.txt').readlines() if line.strip() and not line.startswith('#')] -BUILD_REQUIRED_FILES = ('.VERSION', - 'LICENSE', - 'AUTHORS.rst', - 'CONTRIBUTING.rst', - 'HISTORY.rst', - 'README.rst', - 'USAGE.rst', - 'Pipfile', - 'Pipfile.lock', - 'requirements.txt', - 'dev-requirements.txt') - readme = open('README.rst').read() history = open('HISTORY.rst').read().replace('.. :changelog:', '') version = open('.VERSION').read() @@ -61,7 +49,5 @@ 'Programming Language :: Python :: 3.7', ], test_suite='tests', - tests_require=test_requirements, - data_files=[('', BUILD_REQUIRED_FILES), - ] + tests_require=test_requirements )