Skip to content

Commit

Permalink
Fix install_requires and setup_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleAalbers committed Apr 4, 2018
1 parent d66a8f1 commit 718456d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
except ImportError:
from distutils.core import setup

requires = open('requirements.txt').read().splitlines()
requires = 'numpy pandas numba blosc zstd tqdm dill'.split()

setup(name='strax',
version='0.0.1',
description='Streaming analysis for XENON',
author='Jelle Aalbers',
author_email='[email protected]',
url='https://github.com/jelleaalbers/strax',
setup_requires=requires + ['pytest-runner'],
setup_requires=['pytest-runner'],
install_requires=requires,
tests_require=requires + ['pytest', 'boltons', 'hypothesis'],
packages=['strax'])

0 comments on commit 718456d

Please sign in to comment.