vdatasets 0.1.0__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,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: vdatasets
3
+ Version: 0.1.0
4
+ Summary: some ai datasets
5
+ Requires-Python: >=3.10
@@ -0,0 +1,12 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "vdatasets"
7
+ version = "0.1.0"
8
+ description = "some ai datasets"
9
+ requires-python = ">=3.10"
10
+
11
+ [tool.setuptools]
12
+ py-modules = ["vdatasets"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: vdatasets
3
+ Version: 0.1.0
4
+ Summary: some ai datasets
5
+ Requires-Python: >=3.10
@@ -0,0 +1,6 @@
1
+ pyproject.toml
2
+ vdatasets.py
3
+ vdatasets.egg-info/PKG-INFO
4
+ vdatasets.egg-info/SOURCES.txt
5
+ vdatasets.egg-info/dependency_links.txt
6
+ vdatasets.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ vdatasets
@@ -0,0 +1,3 @@
1
+ import sklearn.datasets as dt
2
+ def load_iris():
3
+ return dt.load_iris()