Skip to content

Commit

Permalink
path limit?
Browse files Browse the repository at this point in the history
  • Loading branch information
untzag committed Aug 8, 2017
1 parent cc76288 commit 8bb0f9a
Show file tree
Hide file tree
Showing 44 changed files with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
# !/usr/bin/env python

import os
from setuptools import setup, find_packages

def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths

extra_files = package_files('WrightTools/datasets')

setup(
name='WrightTools',
packages=find_packages(),
package_data={'': extra_files},
install_requires=['h5py', 'matplotlib', 'numpy', 'python-dateutil', 'pytz', 'scipy'],
version='2.13.4',
description='Tools for loading, processing, and plotting multidimensional spectroscopy data.',
Expand Down

0 comments on commit 8bb0f9a

Please sign in to comment.