Skip to content

Commit

Permalink
Merge pull request #77 from sven1103/master
Browse files Browse the repository at this point in the history
Quick Patch 1.0.1: Refactor dependency management
  • Loading branch information
apeltzer authored Jul 18, 2018
2 parents f49ba59 + 550e6a2 commit 15935c7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
6 changes: 0 additions & 6 deletions requirements.txt

This file was deleted.

12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
with open('LICENSE') as f:
license = f.read()

with open('requirements.txt') as f:
required = f.read().splitlines()

setup(
name = 'nf-core',
version = version,
Expand All @@ -25,7 +22,14 @@
url = 'https://github.com/nf-core/tools',
license = license,
scripts = ['scripts/nf-core'],
install_requires = required,
install_requires = [
'click',
'GitPython',
'pyyaml',
'requests',
'requests_cache',
'tabulate'
],
packages = find_packages(exclude=('docs')),
include_package_data = True,
zip_safe = False
Expand Down

0 comments on commit 15935c7

Please sign in to comment.