xnatqa 0.0.2__tar.gz → 0.0.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xnatqa
3
- Version: 0.0.2
3
+ Version: 0.0.4
4
4
  Summary: A workflow for automatically labeling and running QA on MRI scans within XNAT
5
5
  Author-email: Kyle Kurkela <kkurkela@bu.edu>
6
6
  License-Expression: MIT
@@ -13,8 +13,8 @@ Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Requires-Dist: xnattagger
15
15
  Requires-Dist: yaxil
16
- Requires-Dist: yaml
17
- Requires-Dist: glob
16
+ Requires-Dist: pyyaml
17
+ Requires-Dist: glob2
18
18
  Dynamic: license-file
19
19
 
20
20
  # xnatqa
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "xnatqa"
3
- version = "0.0.2"
3
+ version = "0.0.4"
4
4
  authors = [
5
5
  { name="Kyle Kurkela", email="kkurkela@bu.edu" },
6
6
  ]
@@ -16,10 +16,13 @@ license-files = ["LICEN[CS]E*"]
16
16
  dependencies = [
17
17
  "xnattagger",
18
18
  "yaxil",
19
- "yaml",
20
- "glob"
19
+ "pyyaml",
20
+ "glob2"
21
21
  ]
22
22
 
23
+ [project.scripts]
24
+ xnatqa = "xnatqa.py"
25
+
23
26
  [project.urls]
24
27
  Homepage = "https://github.com/kakurk/auto_labeler"
25
28
  Issues = "https://github.com/kakurk/auto_labeler/issues"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xnatqa
3
- Version: 0.0.2
3
+ Version: 0.0.4
4
4
  Summary: A workflow for automatically labeling and running QA on MRI scans within XNAT
5
5
  Author-email: Kyle Kurkela <kkurkela@bu.edu>
6
6
  License-Expression: MIT
@@ -13,8 +13,8 @@ Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Requires-Dist: xnattagger
15
15
  Requires-Dist: yaxil
16
- Requires-Dist: yaml
17
- Requires-Dist: glob
16
+ Requires-Dist: pyyaml
17
+ Requires-Dist: glob2
18
18
  Dynamic: license-file
19
19
 
20
20
  # xnatqa
@@ -5,6 +5,7 @@ xnatqa/__init__.py
5
5
  xnatqa.egg-info/PKG-INFO
6
6
  xnatqa.egg-info/SOURCES.txt
7
7
  xnatqa.egg-info/dependency_links.txt
8
+ xnatqa.egg-info/entry_points.txt
8
9
  xnatqa.egg-info/requires.txt
9
10
  xnatqa.egg-info/top_level.txt
10
11
  xnatqa/launch/__init__.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ xnatqa = xnatqa.py
@@ -1,4 +1,4 @@
1
1
  xnattagger
2
2
  yaxil
3
- yaml
4
- glob
3
+ pyyaml
4
+ glob2
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes