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 +12 -0
- nn_e-0.1.0/README.md +0 -0
- nn_e-0.1.0/nn_e.egg-info/PKG-INFO +12 -0
- nn_e-0.1.0/nn_e.egg-info/SOURCES.txt +7 -0
- nn_e-0.1.0/nn_e.egg-info/dependency_links.txt +1 -0
- nn_e-0.1.0/nn_e.egg-info/requires.txt +6 -0
- nn_e-0.1.0/nn_e.egg-info/top_level.txt +1 -0
- nn_e-0.1.0/pyproject.toml +19 -0
- nn_e-0.1.0/setup.cfg +4 -0
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 @@
|
|
|
1
|
+
|
|
@@ -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