Skip to content

Commit aef8834

Browse files
committed
FIX: added CIF files to setup.py
1 parent 45996e8 commit aef8834

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
WAVELET_FILES = chain.from_iterable([glob('skued\\baseline\\data\\*.npy'),
2323
glob('skued\\baseline\\data\\*.npz')])
2424

25+
CIF_FILES = chain.from_iterable([glob('skued\\structure\\cifs\\*.cif')])
26+
2527
base_path = os.path.dirname(__file__)
2628
with open(os.path.join(base_path, BASE_PACKAGE, '__init__.py')) as f:
2729
module_content = f.read()
@@ -59,7 +61,8 @@ def skued_test_suite():
5961
install_requires = REQUIREMENTS,
6062
keywords = ['skued'],
6163
packages = PACKAGES,
62-
data_files = [('skued\\baseline\\data', WAVELET_FILES)],
64+
data_files = [('skued\\baseline\\data', WAVELET_FILES),
65+
('skued\\structure\\cifs', CIF_FILES)],
6366
include_package_data = True,
6467
zip_safe = False,
6568
test_suite = 'setup.skued_test_suite',

0 commit comments

Comments
 (0)