Skip to content

Commit 9f57f26

Browse files
committed
fixed maps
1 parent dc6a735 commit 9f57f26

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

setup.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import sys
44
from setuptools import setup
55
from setuptools import Command
6+
from setuptools import find_packages
67

78
# GLOBAL VARIABLES
89
NAME = "pyspod"
@@ -104,7 +105,19 @@ def run(self):
104105
keywords=KEYWORDS,
105106
url=URL,
106107
license='MIT',
107-
packages=[NAME],
108+
# packages=[NAME],
109+
packages=find_packages(),
110+
package_data={'': [
111+
'plotting_support/coast.mat',
112+
'plotting_support/coast_centred.mat'
113+
]},
114+
data_files=[
115+
('pyspod',['pyspod/plotting_support/coast.mat']),
116+
('pyspod',['pyspod/plotting_support/coast_centred.mat'])],
117+
# package_dir={NAME: NAME},
118+
# package_data={NAME: [
119+
# 'pyspod/plotting_support/*.mat',
120+
# ]},
108121
install_requires=REQUIRED,
109122
extras_require=EXTRAS,
110123
include_package_data=True,

0 commit comments

Comments
 (0)