We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45996e8 commit aef8834Copy full SHA for aef8834
1 file changed
setup.py
@@ -22,6 +22,8 @@
22
WAVELET_FILES = chain.from_iterable([glob('skued\\baseline\\data\\*.npy'),
23
glob('skued\\baseline\\data\\*.npz')])
24
25
+CIF_FILES = chain.from_iterable([glob('skued\\structure\\cifs\\*.cif')])
26
+
27
base_path = os.path.dirname(__file__)
28
with open(os.path.join(base_path, BASE_PACKAGE, '__init__.py')) as f:
29
module_content = f.read()
@@ -59,7 +61,8 @@ def skued_test_suite():
59
61
install_requires = REQUIREMENTS,
60
62
keywords = ['skued'],
63
packages = PACKAGES,
- data_files = [('skued\\baseline\\data', WAVELET_FILES)],
64
+ data_files = [('skued\\baseline\\data', WAVELET_FILES),
65
+ ('skued\\structure\\cifs', CIF_FILES)],
66
include_package_data = True,
67
zip_safe = False,
68
test_suite = 'setup.skued_test_suite',
0 commit comments