Skip to content

Commit 079e63d

Browse files
committed
Clean up requirements and setup.py
1 parent f48fc9b commit 079e63d

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

requirements.txt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
pydicom
1+
.[full]
22
# This is a dcmstack branch with changes for Python 3
3+
# sent PR to main repo, TODO: check if merged
4+
# https://github.com/ghisvail/dcmstack/pull/1
35
git+git://github.com/mvdoc/dcmstack@bf/importsys
4-
nipype
5-
inotify
6-
datalad
7-
tinydb

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,19 @@ def findsome(subdir, extensions):
3333
requires = {
3434
'core': [
3535
'nibabel',
36-
# TODO: migrate more from requirements.txt
36+
'pydicom',
3737
],
3838
'tests': [
3939
'six',
4040
'nose',
4141
],
42+
'monitor': [
43+
'inotify',
44+
'tinydb'
45+
],
46+
'datalad': [
47+
'datalad'
48+
]
4249
}
4350
requires['full'] = sum(list(requires.values()), [])
4451

0 commit comments

Comments
 (0)