File: 0002-Fix-install-data.patch

package info (click to toggle)
pyspectral 0.13.6%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,184 kB
  • sloc: python: 6,070; makefile: 123
file content (24 lines) | stat: -rw-r--r-- 900 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From: Antonio Valentino <antonio.valentino@tiscali.it>
Date: Wed, 26 Dec 2018 16:29:47 +0000
Subject: Fix install data

Forwarded: not-needed
---
 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index f04045d..efc1f30 100644
--- a/setup.py
+++ b/setup.py
@@ -77,8 +77,8 @@ setup(name=NAME,
       scripts=['bin/plot_rsr.py', 'bin/composite_rsr_plot.py',
                'bin/download_atm_correction_luts.py',
                'bin/download_rsr.py'],
-      data_files=[('share', ['pyspectral/data/e490_00a.dat',
-                             'pyspectral/data/MSG_SEVIRI_Spectral_Response_Characterisation.XLS'])],
+      # data_files=[('share/', ['pyspectral/data/e490_00a.dat',
+      #                        'pyspectral/data/MSG_SEVIRI_Spectral_Response_Characterisation.XLS'])],
       python_requires='>=3.10',
       zip_safe=False,
       )