mozo 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.
mozo-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025
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.
mozo-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,58 @@
1
+ Metadata-Version: 2.4
2
+ Name: mozo
3
+ Version: 0.1.0
4
+ Summary: A Python library named mozo
5
+ Home-page: https://github.com/datamarkin/mozo
6
+ Author: Emrah NAZIF
7
+ Author-email: Your Name <your.email@example.com>
8
+ License: MIT
9
+ Project-URL: Homepage, https://github.com/datamarkin/mozo
10
+ Project-URL: Bug Tracker, https://github.com/datamarkin/mozo/issues
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.6
16
+ Classifier: Programming Language :: Python :: 3.7
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Requires-Python: >=3.6
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Dynamic: author
25
+ Dynamic: home-page
26
+ Dynamic: license-file
27
+ Dynamic: requires-python
28
+
29
+ # mozo
30
+
31
+ A dummy Python library named mozo.
32
+
33
+ ## Installation
34
+
35
+ ```bash
36
+ pip install mozo
37
+ ```
38
+
39
+ ## Usage
40
+
41
+ ```python
42
+ import mozo
43
+
44
+ # Print version
45
+ print(mozo.__version__)
46
+
47
+ # Call the hello function
48
+ print(mozo.hello())
49
+ ```
50
+
51
+ ## Features
52
+
53
+ - Simple hello function
54
+ - Lightweight and easy to use
55
+
56
+ ## License
57
+
58
+ MIT License
mozo-0.1.0/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # mozo
2
+
3
+ A dummy Python library named mozo.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install mozo
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ import mozo
15
+
16
+ # Print version
17
+ print(mozo.__version__)
18
+
19
+ # Call the hello function
20
+ print(mozo.hello())
21
+ ```
22
+
23
+ ## Features
24
+
25
+ - Simple hello function
26
+ - Lightweight and easy to use
27
+
28
+ ## License
29
+
30
+ MIT License
@@ -0,0 +1,9 @@
1
+ """
2
+ mozo - A dummy Python library
3
+ """
4
+
5
+ __version__ = "0.1.0"
6
+
7
+ def hello():
8
+ """Simple hello function"""
9
+ return "Hello from mozo library!"
@@ -0,0 +1,58 @@
1
+ Metadata-Version: 2.4
2
+ Name: mozo
3
+ Version: 0.1.0
4
+ Summary: A Python library named mozo
5
+ Home-page: https://github.com/datamarkin/mozo
6
+ Author: Emrah NAZIF
7
+ Author-email: Your Name <your.email@example.com>
8
+ License: MIT
9
+ Project-URL: Homepage, https://github.com/datamarkin/mozo
10
+ Project-URL: Bug Tracker, https://github.com/datamarkin/mozo/issues
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.6
16
+ Classifier: Programming Language :: Python :: 3.7
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Requires-Python: >=3.6
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Dynamic: author
25
+ Dynamic: home-page
26
+ Dynamic: license-file
27
+ Dynamic: requires-python
28
+
29
+ # mozo
30
+
31
+ A dummy Python library named mozo.
32
+
33
+ ## Installation
34
+
35
+ ```bash
36
+ pip install mozo
37
+ ```
38
+
39
+ ## Usage
40
+
41
+ ```python
42
+ import mozo
43
+
44
+ # Print version
45
+ print(mozo.__version__)
46
+
47
+ # Call the hello function
48
+ print(mozo.hello())
49
+ ```
50
+
51
+ ## Features
52
+
53
+ - Simple hello function
54
+ - Lightweight and easy to use
55
+
56
+ ## License
57
+
58
+ MIT License
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ mozo/__init__.py
6
+ mozo.egg-info/PKG-INFO
7
+ mozo.egg-info/SOURCES.txt
8
+ mozo.egg-info/dependency_links.txt
9
+ mozo.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ mozo
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "mozo"
7
+ version = "0.1.0"
8
+ description = "A Python library named mozo"
9
+ readme = "README.md"
10
+ authors = [
11
+ { name = "Your Name", email = "your.email@example.com" }
12
+ ]
13
+ license = { text = "MIT" }
14
+ classifiers = [
15
+ "Development Status :: 3 - Alpha",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.6",
20
+ "Programming Language :: Python :: 3.7",
21
+ "Programming Language :: Python :: 3.8",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ ]
26
+ requires-python = ">=3.6"
27
+
28
+ [project.urls]
29
+ "Homepage" = "https://github.com/datamarkin/mozo"
30
+ "Bug Tracker" = "https://github.com/datamarkin/mozo/issues"
mozo-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
mozo-0.1.0/setup.py ADDED
@@ -0,0 +1,33 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
+ setup(
7
+ name="mozo",
8
+ version="0.1.0",
9
+ description="A Python library named mozo",
10
+ long_description=long_description,
11
+ long_description_content_type="text/markdown",
12
+ author="Emrah NAZIF",
13
+ author_email="emrah@datamarkin.com",
14
+ url="https://github.com/datamarkin/mozo",
15
+ project_urls={
16
+ "Bug Tracker": "https://github.com/datamarkin/mozo/issues",
17
+ },
18
+ classifiers=[
19
+ "Development Status :: 3 - Alpha",
20
+ "Intended Audience :: Developers",
21
+ "License :: OSI Approved :: MIT License",
22
+ "Programming Language :: Python :: 3",
23
+ "Programming Language :: Python :: 3.6",
24
+ "Programming Language :: Python :: 3.7",
25
+ "Programming Language :: Python :: 3.8",
26
+ "Programming Language :: Python :: 3.9",
27
+ "Programming Language :: Python :: 3.10",
28
+ "Programming Language :: Python :: 3.11",
29
+ ],
30
+ packages=find_packages(),
31
+ python_requires=">=3.6",
32
+ license="MIT",
33
+ )