mrlypy 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.
@@ -0,0 +1,29 @@
1
+ # SECRETS
2
+ .env
3
+ *.env
4
+
5
+ # CLAUDE
6
+ .claude/
7
+
8
+ # OUTPUT
9
+ data/
10
+ dist/
11
+
12
+ # RUST
13
+ target/
14
+
15
+ # IDE
16
+ .vscode/
17
+
18
+ # OS
19
+ .DS_Store
20
+
21
+ # DEMOS
22
+ sites/net/node_modules/
23
+ sites/net/pkg/
24
+ sites/net/dist/
25
+
26
+ # PYTHON
27
+ .venv/
28
+ __pycache__/
29
+ .pytest_cache/
mrlypy-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.5
2
+ Name: mrlypy
3
+ Version: 0.0.1
4
+ Summary: MrlyProd; or, Marley Productions
5
+ Project-URL: Homepage, https://mrly.net
6
+ Project-URL: Repository, https://github.com/mrlyprod/mrlyprod
7
+ License-Expression: MIT
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+
11
+ MrlyProd; or, Marley Productions
mrlypy-0.0.1/README.md ADDED
@@ -0,0 +1 @@
1
+ MrlyProd; or, Marley Productions
@@ -0,0 +1,15 @@
1
+ [project]
2
+ name = "mrlypy"
3
+ version = "0.0.1"
4
+ description = "MrlyProd; or, Marley Productions"
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ requires-python = ">=3.9"
8
+
9
+ [project.urls]
10
+ Homepage = "https://mrly.net"
11
+ Repository = "https://github.com/mrlyprod/mrlyprod"
12
+
13
+ [build-system]
14
+ requires = ["hatchling"]
15
+ build-backend = "hatchling.build"
@@ -0,0 +1,2 @@
1
+ def hello():
2
+ return "Hello, World!"
@@ -0,0 +1,5 @@
1
+ from mrlypy import hello
2
+
3
+
4
+ def test_hello():
5
+ assert hello() == "Hello, World!"