From 7b787a28933cfa82fe85eec700d24f14ee0e2b4d Mon Sep 17 00:00:00 2001 From: Olivier Jolly Date: Tue, 26 Jan 2016 12:03:28 +0100 Subject: [PATCH] Package license, pylintrc and template data --- MANIFEST.in | 4 ++++ pylintrc.txt => pylintrc | 0 setup.py | 6 +++--- 3 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 MANIFEST.in rename pylintrc.txt => pylintrc (100%) diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..61a485e --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +# Include the license file +include LICENSE.txt + +include pylintrc diff --git a/pylintrc.txt b/pylintrc similarity index 100% rename from pylintrc.txt rename to pylintrc diff --git a/setup.py b/setup.py index 9706bf3..ebe0d91 100644 --- a/setup.py +++ b/setup.py @@ -101,9 +101,9 @@ setup( # If there are data files included in your packages that need to be # installed, specify them here. If using Python 2.6 or less, then these # have to be included in MANIFEST.in as well. - # package_data={ - # 'sample': ['package_data.dat'], - # }, + package_data={ + 'rnsutils': ['data/*.xrni'], + }, # Although 'package_data' is the preferred approach, in some case you may # need to place data files outside of your packages. See: