Skip to content

Commit

Permalink
Merge pull request #17 from andreabedini/patch-1
Browse files Browse the repository at this point in the history
Fix package requirements in setup.py
  • Loading branch information
dotsdl committed Sep 8, 2015
2 parents 9351af2 + f7ce533 commit b633931
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@ install:
- pip install codecov
- pip install pytest-cov
- pip install pytest-pep8
- pip install numpy numexpr Cython
- pip install tables
- pip install pandas h5py
- pip install scandir
- pip install PyYAML
- pip install -e .

# run tests
Expand Down
13 changes: 10 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,18 @@

setup(name='datreant',
version='0.5.1',
author='David Dotson',
author='David Dotson',
author_email='dotsdl@gmail.com',
packages=['datreant', 'datreant.tests'],
scripts=[],
license='BSD',
long_description=open('README.rst').read(),
requires=['pandas', 'tables', 'h5py', 'scandir']
)
install_requires=[
'numpy',
'pandas',
'tables',
'h5py',
'scandir',
'PyYAML'
]
)

0 comments on commit b633931

Please sign in to comment.