easey 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.
easey-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 George Brown
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
easey-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: easey
3
+ Version: 0.0.1
4
+ Summary: A minimal implementation of Embarrassingly Shallow Autoencoders
5
+ Author-email: George Brown <gcbrown@pm.me>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/gcbrown/easey
8
+ Project-URL: Issues, https://github.com/gcbrown/easey/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: license-file
15
+
16
+ # easey
17
+ Embarrassingly Shallow Autoencoders (EASE) Implementation
easey-0.0.1/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # easey
2
+ Embarrassingly Shallow Autoencoders (EASE) Implementation
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: easey
3
+ Version: 0.0.1
4
+ Summary: A minimal implementation of Embarrassingly Shallow Autoencoders
5
+ Author-email: George Brown <gcbrown@pm.me>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/gcbrown/easey
8
+ Project-URL: Issues, https://github.com/gcbrown/easey/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: license-file
15
+
16
+ # easey
17
+ Embarrassingly Shallow Autoencoders (EASE) Implementation
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ easey.py
4
+ pyproject.toml
5
+ easey.egg-info/PKG-INFO
6
+ easey.egg-info/SOURCES.txt
7
+ easey.egg-info/dependency_links.txt
8
+ easey.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ easey
easey-0.0.1/easey.py ADDED
@@ -0,0 +1,2 @@
1
+ def say_hello():
2
+ print('Hello world')
@@ -0,0 +1,20 @@
1
+ [project]
2
+ name = "easey"
3
+ version = "0.0.1"
4
+ authors = [
5
+ { name="George Brown", email="gcbrown@pm.me" },
6
+ ]
7
+ description = "A minimal implementation of Embarrassingly Shallow Autoencoders"
8
+ readme = "README.md"
9
+ requires-python = ">=3.9"
10
+ classifiers = [
11
+ "Programming Language :: Python :: 3",
12
+ "Operating System :: OS Independent",
13
+ ]
14
+ license = "MIT"
15
+ license-files = ["LICENSE"]
16
+
17
+ [project.urls]
18
+ Homepage = "https://github.com/gcbrown/easey"
19
+ Issues = "https://github.com/gcbrown/easey/issues"
20
+
easey-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+