deepepoch 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.
deepepoch-0.1/PKG-INFO ADDED
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: deepepoch
3
+ Version: 0.1
@@ -0,0 +1 @@
1
+ from .loader import load
@@ -0,0 +1,2 @@
1
+ def load(dataset_name):
2
+ return f"Erfolg! Du hast das Paket erfolgreich aufgerufen. Dataset: {dataset_name}"
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: deepepoch
3
+ Version: 0.1
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ deepepoch/__init__.py
3
+ deepepoch/loader.py
4
+ deepepoch.egg-info/PKG-INFO
5
+ deepepoch.egg-info/SOURCES.txt
6
+ deepepoch.egg-info/dependency_links.txt
7
+ deepepoch.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ deepepoch
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
deepepoch-0.1/setup.py ADDED
@@ -0,0 +1,7 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="deepepoch",
5
+ version="0.1",
6
+ packages=find_packages(),
7
+ )