Skip to content

Commit

Permalink
remove pytest + fix dockerpy version inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubk committed Jul 7, 2017
1 parent d2210d9 commit 0efb6e5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 2 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
docker>=2.2.0
pytest>=3.0
requests>=2.0.0
docker>=2.3
requests>=2.0
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@

from setuptools import find_packages, setup

import neurodocker

setup(name='neurodocker',
version='0.1.0.dev0',
version=neurodocker.__version__,
url='https://github.com/kaczmarj/neurodocker',
author='Jakub Kaczmarzyk',
author_email='[email protected]',
packages=find_packages(),
install_requires = [
'requests',
'requests>=2.0',
'docker>=2.3'
],
entry_points={'console_scripts':
['neurodocker=neurodocker.main:main']}
['neurodocker=neurodocker.neurodocker:main']}
)

0 comments on commit 0efb6e5

Please sign in to comment.