radiomicsaudit 0.0.1__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.
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: radiomicsaudit
3
+ Version: 0.0.1
4
+ Summary: RadiomicsAudit: Radiomics validation and auditing toolkit
5
+ Author: Suchibrata Patra
6
+ Requires-Python: >=3.9
7
+ Description-Content-Type: text/markdown
8
+
9
+ # RadiomicsAudit
10
+
11
+ RadiomicsAudit is an open-source toolkit for auditing radiomic feature reliability and stability.
12
+
13
+ ## Installation
14
+
15
+ ```bash
16
+ pip install radiomicsaudit
@@ -0,0 +1,8 @@
1
+ # RadiomicsAudit
2
+
3
+ RadiomicsAudit is an open-source toolkit for auditing radiomic feature reliability and stability.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install radiomicsaudit
@@ -0,0 +1,16 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "radiomicsaudit"
7
+ version = "0.0.1"
8
+ authors = [
9
+ {name = "Suchibrata Patra"}
10
+ ]
11
+ description = "RadiomicsAudit: Radiomics validation and auditing toolkit"
12
+ readme = "README.md"
13
+ requires-python = ">=3.9"
14
+
15
+ [tool.setuptools]
16
+ packages = ["radiomicsaudit"]
@@ -0,0 +1 @@
1
+ from .audit import audit_pipeline
@@ -0,0 +1,7 @@
1
+ def audit_pipeline():
2
+ print("RadiomicsAudit audit_pipeline() is working!")
3
+
4
+ return {
5
+ "status": "success",
6
+ "package": "RadiomicsAudit"
7
+ }
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: radiomicsaudit
3
+ Version: 0.0.1
4
+ Summary: RadiomicsAudit: Radiomics validation and auditing toolkit
5
+ Author: Suchibrata Patra
6
+ Requires-Python: >=3.9
7
+ Description-Content-Type: text/markdown
8
+
9
+ # RadiomicsAudit
10
+
11
+ RadiomicsAudit is an open-source toolkit for auditing radiomic feature reliability and stability.
12
+
13
+ ## Installation
14
+
15
+ ```bash
16
+ pip install radiomicsaudit
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ radiomicsaudit/__init__.py
4
+ radiomicsaudit/audit.py
5
+ radiomicsaudit.egg-info/PKG-INFO
6
+ radiomicsaudit.egg-info/SOURCES.txt
7
+ radiomicsaudit.egg-info/dependency_links.txt
8
+ radiomicsaudit.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ radiomicsaudit
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+