Skip to content

Commit

Permalink
FIX: added CIF files to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Aug 25, 2017
1 parent 45996e8 commit aef8834
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
WAVELET_FILES = chain.from_iterable([glob('skued\\baseline\\data\\*.npy'),
glob('skued\\baseline\\data\\*.npz')])

CIF_FILES = chain.from_iterable([glob('skued\\structure\\cifs\\*.cif')])

base_path = os.path.dirname(__file__)
with open(os.path.join(base_path, BASE_PACKAGE, '__init__.py')) as f:
module_content = f.read()
Expand Down Expand Up @@ -59,7 +61,8 @@ def skued_test_suite():
install_requires = REQUIREMENTS,
keywords = ['skued'],
packages = PACKAGES,
data_files = [('skued\\baseline\\data', WAVELET_FILES)],
data_files = [('skued\\baseline\\data', WAVELET_FILES),
('skued\\structure\\cifs', CIF_FILES)],
include_package_data = True,
zip_safe = False,
test_suite = 'setup.skued_test_suite',
Expand Down

0 comments on commit aef8834

Please sign in to comment.