arva 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.
- arva-0.0.1/PKG-INFO +16 -0
- arva-0.0.1/README.md +7 -0
- arva-0.0.1/arva/__init__.py +4 -0
- arva-0.0.1/arva.egg-info/PKG-INFO +16 -0
- arva-0.0.1/arva.egg-info/SOURCES.txt +7 -0
- arva-0.0.1/arva.egg-info/dependency_links.txt +1 -0
- arva-0.0.1/arva.egg-info/top_level.txt +1 -0
- arva-0.0.1/pyproject.toml +16 -0
- arva-0.0.1/setup.cfg +4 -0
arva-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: arva
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Arva — machine learning data inspection and model diagnostics toolkit
|
|
5
|
+
Author: Narasimha Kambham
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Arva
|
|
11
|
+
|
|
12
|
+
Arva is a Python toolkit for machine learning data inspection and model diagnostics.
|
|
13
|
+
|
|
14
|
+
This is an initial placeholder release.
|
|
15
|
+
|
|
16
|
+
Full features coming soon.
|
arva-0.0.1/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: arva
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Arva — machine learning data inspection and model diagnostics toolkit
|
|
5
|
+
Author: Narasimha Kambham
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Arva
|
|
11
|
+
|
|
12
|
+
Arva is a Python toolkit for machine learning data inspection and model diagnostics.
|
|
13
|
+
|
|
14
|
+
This is an initial placeholder release.
|
|
15
|
+
|
|
16
|
+
Full features coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
arva
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "arva"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Arva — machine learning data inspection and model diagnostics toolkit"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Narasimha Kambham"}
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
dependencies = []
|
arva-0.0.1/setup.cfg
ADDED