wuzup 0.0.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.
wuzup-0.0.0/LICENSE.md ADDED
@@ -0,0 +1,7 @@
1
+ Copyright 2025 Charles Machalow
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
wuzup-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: wuzup
3
+ Version: 0.0.0
4
+ Summary: A project for wuzup
5
+ Author-email: csm10495 <csm10495@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: homepage, https://github.com/csm10495/wuzup
8
+ Project-URL: repository, https://github.com/csm10495/wuzup
9
+ Project-URL: documentation, https://csm10495.github.io/wuzup
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Natural Language :: English
12
+ Classifier: Operating System :: POSIX
13
+ Classifier: Operating System :: Microsoft :: Windows
14
+ Classifier: Programming Language :: Python
15
+ Classifier: Programming Language :: Python :: 3
16
+ Requires-Python: >=3.8
17
+ Description-Content-Type: text/markdown
18
+ License-File: LICENSE.md
19
+ Provides-Extra: dev
20
+ Requires-Dist: pytest; extra == "dev"
21
+ Dynamic: license-file
22
+
23
+ # wuzup
24
+
25
+ A repo for wuzup
wuzup-0.0.0/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # wuzup
2
+
3
+ A repo for wuzup
@@ -0,0 +1,49 @@
1
+ [project]
2
+ name = "wuzup"
3
+ description = "A project for wuzup"
4
+ dynamic = ["version"]
5
+ authors = [{name = "csm10495", email = "csm10495@gmail.com"}]
6
+ license = "MIT"
7
+ classifiers = [
8
+ "Intended Audience :: Developers",
9
+ "Natural Language :: English",
10
+ "Operating System :: POSIX",
11
+ "Operating System :: Microsoft :: Windows",
12
+ "Programming Language :: Python",
13
+ "Programming Language :: Python :: 3",
14
+ ]
15
+ requires-python = ">=3.8"
16
+ dependencies = []
17
+
18
+ [project.optional-dependencies]
19
+ dev = [
20
+ "pytest"
21
+ ]
22
+
23
+ [project.urls]
24
+ homepage = "https://github.com/csm10495/wuzup"
25
+ repository = "https://github.com/csm10495/wuzup"
26
+ documentation = "https://csm10495.github.io/wuzup"
27
+
28
+ [project.readme]
29
+ file = "README.md"
30
+ content-type = "text/markdown"
31
+
32
+ [project.scripts]
33
+ wuzup = "wuzup.__main__:main"
34
+
35
+ [tool.setuptools]
36
+ packages = ["wuzup"]
37
+ include-package-data = true
38
+
39
+ [tool.setuptools.dynamic]
40
+ version = {attr = "wuzup.__version__"}
41
+
42
+ [tool.pytest.ini_options]
43
+ pythonpath = [
44
+ "."
45
+ ]
46
+
47
+ [build-system]
48
+ requires = ["setuptools>=61.2"]
49
+ build-backend = "setuptools.build_meta"
wuzup-0.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ # Write tests here.
2
+
3
+
4
+ def test_nothing():
5
+ pass
@@ -0,0 +1 @@
1
+ __version__ = "0.0.0"
@@ -0,0 +1,6 @@
1
+ def main():
2
+ print("To do: Write me!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: wuzup
3
+ Version: 0.0.0
4
+ Summary: A project for wuzup
5
+ Author-email: csm10495 <csm10495@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: homepage, https://github.com/csm10495/wuzup
8
+ Project-URL: repository, https://github.com/csm10495/wuzup
9
+ Project-URL: documentation, https://csm10495.github.io/wuzup
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Natural Language :: English
12
+ Classifier: Operating System :: POSIX
13
+ Classifier: Operating System :: Microsoft :: Windows
14
+ Classifier: Programming Language :: Python
15
+ Classifier: Programming Language :: Python :: 3
16
+ Requires-Python: >=3.8
17
+ Description-Content-Type: text/markdown
18
+ License-File: LICENSE.md
19
+ Provides-Extra: dev
20
+ Requires-Dist: pytest; extra == "dev"
21
+ Dynamic: license-file
22
+
23
+ # wuzup
24
+
25
+ A repo for wuzup
@@ -0,0 +1,12 @@
1
+ LICENSE.md
2
+ README.md
3
+ pyproject.toml
4
+ tests/test_wuzup.py
5
+ wuzup/__init__.py
6
+ wuzup/__main__.py
7
+ wuzup.egg-info/PKG-INFO
8
+ wuzup.egg-info/SOURCES.txt
9
+ wuzup.egg-info/dependency_links.txt
10
+ wuzup.egg-info/entry_points.txt
11
+ wuzup.egg-info/requires.txt
12
+ wuzup.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ wuzup = wuzup.__main__:main
@@ -0,0 +1,3 @@
1
+
2
+ [dev]
3
+ pytest
@@ -0,0 +1 @@
1
+ wuzup