File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 33import sys
44from setuptools import setup
55from setuptools import Command
6+ from setuptools import find_packages
67
78# GLOBAL VARIABLES
89NAME = "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 ,
You can’t perform that action at this time.
0 commit comments