Skip to content

Commit

Permalink
FIX: wavelet filters not being installed with the package
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Jun 6, 2017
1 parent 9c88eb6 commit bd28ec6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# -*- coding: utf-8 -*-
from glob import glob
from itertools import chain
import os
import re
from setuptools import setup, find_packages
#from Cython.Build import cythonize

BASE_PACKAGE = 'skued'

wavelets = chain.from_iterable([glob('skued\\baseline\\data\\*.npy'),
glob('skued\\baseline\\data\\*.npz')])

base_path = os.path.dirname(__file__)
with open(os.path.join(base_path, 'skued', '__init__.py')) as f:
module_content = f.read()
Expand Down Expand Up @@ -42,6 +47,7 @@
install_requires = requirements,
keywords = ['skued'],
packages = packages,
data_files = [('skued\\baseline\\data', wavelets)],
include_package_data = True,
zip_safe = False,
classifiers = ['Environment :: Console',
Expand Down

0 comments on commit bd28ec6

Please sign in to comment.