From: Thierry Parmentelat <thierry.parmentelat@inria.fr>
Date: Tue, 2 Feb 2016 10:17:38 +0000 (+0100)
Subject: for virtualenv : do not store anything in /etc
X-Git-Tag: nepi-6.0.5-pypi
X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=bb9b945e74955e9c8de3565cdaa65695e78d3951;p=nepi.git

for virtualenv : do not store anything in /etc
---

diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 00000000..7ce03198
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
+include  COPYING README.md
diff --git a/VERSION b/VERSION
index 1aa5e414..288b2cd9 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-6.0.4
+6.0.5
diff --git a/setup.py b/setup.py
index 3225cc27..a2520966 100755
--- a/setup.py
+++ b/setup.py
@@ -13,15 +13,13 @@ try:
 except:
     version_tag = 'cleaningup'
 
+### NOTE: these 2 files are made available at install-time in MANIFEST.in
 # read licence info
 with open("COPYING") as f:
     license = f.read()
 with open("README.md") as f:
     long_description = f.read()
 
-# we'd probably would be better off with this some place else
-data_files = [ ('/etc/nepi', [ 'COPYING', 'README.md' ] ) ]
-
 ### requirements - used by pip install
 required_modules = [ ]
    # we are now using six for a portable code
@@ -49,7 +47,6 @@ setup(
     download_url     = "http://build.onelab.eu/nepi/nepi-{v}.tar.gz".format(v=version_tag),
     url              = "http://nepi.inria.fr/",
     platforms        = "Linux, OSX",
-    data_files       = data_files,
     packages         = [
         "nepi",
         "nepi.execution",