Skip to content

Commit

Permalink
included requirements in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cmohl2013 committed May 15, 2019
1 parent 9da609e commit c3172aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
4 changes: 0 additions & 4 deletions requirements.txt

This file was deleted.

15 changes: 5 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,10 @@

from setuptools import setup, find_packages

try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements


requirements_txt = os.path.join(os.path.dirname(__file__), 'requirements.txt')
install_reqs = parse_requirements(requirements_txt, session=False)
reqs = [str(ir.req) for ir in install_reqs]
reqs = ['h5py>=2.6.0',
'numpy>=1.12.1',
'docopt>=0.6.2',
'bigtiff>=0.1.1']

def readme():
README_md = os.path.join(os.path.dirname(__file__), 'README.md')
Expand All @@ -19,7 +14,7 @@ def readme():


setup(name='pyilastik',
version='0.0.4',
version='0.0.5',
description='Read ilastik labels in python',
author='Manuel Schoelling',
author_email='manuel.schoelling@dzne.de',
Expand Down

0 comments on commit c3172aa

Please sign in to comment.