nn-e 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.
nn_e-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: nn-e
3
+ Version: 0.1.0
4
+ Summary: A modular neural network framework
5
+ Project-URL: Homepage, https://github.com/diri-daniel/NN_E.git
6
+ Requires-Python: >=3.11
7
+ Requires-Dist: os
8
+ Requires-Dist: numpy
9
+ Requires-Dist: pandas
10
+ Requires-Dist: ctypes
11
+ Requires-Dist: datetime
12
+ Requires-Dist: matplotlib
nn_e-0.1.0/README.md ADDED
File without changes
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: nn-e
3
+ Version: 0.1.0
4
+ Summary: A modular neural network framework
5
+ Project-URL: Homepage, https://github.com/diri-daniel/NN_E.git
6
+ Requires-Python: >=3.11
7
+ Requires-Dist: os
8
+ Requires-Dist: numpy
9
+ Requires-Dist: pandas
10
+ Requires-Dist: ctypes
11
+ Requires-Dist: datetime
12
+ Requires-Dist: matplotlib
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ nn_e.egg-info/PKG-INFO
4
+ nn_e.egg-info/SOURCES.txt
5
+ nn_e.egg-info/dependency_links.txt
6
+ nn_e.egg-info/requires.txt
7
+ nn_e.egg-info/top_level.txt
@@ -0,0 +1,6 @@
1
+ os
2
+ numpy
3
+ pandas
4
+ ctypes
5
+ datetime
6
+ matplotlib
@@ -0,0 +1 @@
1
+ Helper
@@ -0,0 +1,19 @@
1
+ [project]
2
+ name = "nn-e"
3
+ version = "0.1.0"
4
+ description = "A modular neural network framework"
5
+ requires-python = ">=3.11"
6
+ dependencies = [
7
+ "os",
8
+ "numpy",
9
+ "pandas",
10
+ "ctypes",
11
+ "datetime",
12
+ "matplotlib"
13
+ ]
14
+
15
+ [project.urls]
16
+ Homepage = "https://github.com/diri-daniel/NN_E.git"
17
+
18
+ [tool.setuptools.package-data]
19
+ Experiment = ["Helper/*.dll", "Helper/*.so"]
nn_e-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+