From 58e0de7fa5f8ade7ae7f869e1bbacb7fcd9601ed Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Mon, 8 Jan 2018 22:59:42 -0200 Subject: [PATCH] Fix bad requirements path Signed-off-by: Uilian Ries --- bincrafters/__init__.py | 2 +- {tests => bincrafters}/requirements_test.txt | 0 setup.py | 3 ++- 3 files changed, 3 insertions(+), 2 deletions(-) rename {tests => bincrafters}/requirements_test.txt (100%) diff --git a/bincrafters/__init__.py b/bincrafters/__init__.py index 32a90a3..e4e49b3 100644 --- a/bincrafters/__init__.py +++ b/bincrafters/__init__.py @@ -1 +1 @@ -__version__ = '0.8.0' +__version__ = '0.9.0' diff --git a/tests/requirements_test.txt b/bincrafters/requirements_test.txt similarity index 100% rename from tests/requirements_test.txt rename to bincrafters/requirements_test.txt diff --git a/setup.py b/setup.py index c012366..253300b 100644 --- a/setup.py +++ b/setup.py @@ -107,7 +107,8 @@ def load_version(): # installed, specify them here. If using Python 2.6 or less, then these # have to be included in MANIFEST.in as well. package_data={ - '': ['*.txt', '*.md'], + '': ['*.md'], + 'bincrafters' : ['*.txt'], }, # Although 'package_data' is the preferred approach, in some case you may