microsandbox 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.
@@ -0,0 +1,92 @@
1
+ Metadata-Version: 2.4
2
+ Name: microsandbox
3
+ Version: 0.1.0
4
+ Summary: Microsandbox Python SDK
5
+ Home-page: https://microsandbox.dev
6
+ Author: Microsandbox Team
7
+ Author-email: team@microsandbox.dev
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: Apache Software License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+ Provides-Extra: dev
14
+ Requires-Dist: pytest>=6.0.0; extra == "dev"
15
+ Requires-Dist: black>=22.0.0; extra == "dev"
16
+ Requires-Dist: isort>=5.0.0; extra == "dev"
17
+ Requires-Dist: mypy>=0.900; extra == "dev"
18
+ Requires-Dist: build>=0.8.0; extra == "dev"
19
+ Requires-Dist: twine>=4.0.0; extra == "dev"
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description
24
+ Dynamic: description-content-type
25
+ Dynamic: home-page
26
+ Dynamic: provides-extra
27
+ Dynamic: requires-python
28
+ Dynamic: summary
29
+
30
+ # Microsandbox Python SDK
31
+
32
+ A minimal Python SDK for the Microsandbox project.
33
+
34
+ ## Installation
35
+
36
+ ```bash
37
+ pip install microsandbox
38
+ ```
39
+
40
+ ## Usage
41
+
42
+ ```python
43
+ from microsandbox import hello
44
+
45
+ # Print a greeting
46
+ hello.greet("World")
47
+ ```
48
+
49
+ ## Development
50
+
51
+ ### Setup
52
+
53
+ ```bash
54
+ # Clone the repository
55
+ git clone https://github.com/yourusername/monocore.git
56
+ cd monocore/sdk/python
57
+
58
+ # Create a virtual environment
59
+ python -m venv venv
60
+ source venv/bin/activate # On Windows: venv\Scripts\activate
61
+
62
+ # Install development dependencies
63
+ pip install -e ".[dev]"
64
+ ```
65
+
66
+ ### Building the Package
67
+
68
+ ```bash
69
+ python -m build
70
+ ```
71
+
72
+ ### Publishing to PyPI
73
+
74
+ ```bash
75
+ # Install publishing tools
76
+ pip install twine
77
+
78
+ # Build the distribution
79
+ python -m build
80
+
81
+ # Upload to TestPyPI first (recommended)
82
+ twine upload --repository-url https://test.pypi.org/legacy/ dist/*
83
+
84
+ # Upload to PyPI
85
+ twine upload dist/*
86
+ ```
87
+
88
+ Make sure you have registered for an account on [PyPI](https://pypi.org/) and created an API token for authentication.
89
+
90
+ ## License
91
+
92
+ [MIT](LICENSE)
@@ -0,0 +1,63 @@
1
+ # Microsandbox Python SDK
2
+
3
+ A minimal Python SDK for the Microsandbox project.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install microsandbox
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ from microsandbox import hello
15
+
16
+ # Print a greeting
17
+ hello.greet("World")
18
+ ```
19
+
20
+ ## Development
21
+
22
+ ### Setup
23
+
24
+ ```bash
25
+ # Clone the repository
26
+ git clone https://github.com/yourusername/monocore.git
27
+ cd monocore/sdk/python
28
+
29
+ # Create a virtual environment
30
+ python -m venv venv
31
+ source venv/bin/activate # On Windows: venv\Scripts\activate
32
+
33
+ # Install development dependencies
34
+ pip install -e ".[dev]"
35
+ ```
36
+
37
+ ### Building the Package
38
+
39
+ ```bash
40
+ python -m build
41
+ ```
42
+
43
+ ### Publishing to PyPI
44
+
45
+ ```bash
46
+ # Install publishing tools
47
+ pip install twine
48
+
49
+ # Build the distribution
50
+ python -m build
51
+
52
+ # Upload to TestPyPI first (recommended)
53
+ twine upload --repository-url https://test.pypi.org/legacy/ dist/*
54
+
55
+ # Upload to PyPI
56
+ twine upload dist/*
57
+ ```
58
+
59
+ Make sure you have registered for an account on [PyPI](https://pypi.org/) and created an API token for authentication.
60
+
61
+ ## License
62
+
63
+ [MIT](LICENSE)
@@ -0,0 +1,7 @@
1
+ """
2
+ Microsandbox Python SDK
3
+
4
+ A minimal SDK for the Microsandbox project.
5
+ """
6
+
7
+ __version__ = "0.0.1"
@@ -0,0 +1,18 @@
1
+ """
2
+ Hello World module for the Microsandbox SDK.
3
+ """
4
+
5
+
6
+ def greet(name: str) -> str:
7
+ """
8
+ Returns a greeting message for the given name.
9
+
10
+ Args:
11
+ name: The name to greet
12
+
13
+ Returns:
14
+ A greeting message
15
+ """
16
+ message = f"Hello, {name}! Welcome to Microsandbox!"
17
+ print(message)
18
+ return message
@@ -0,0 +1,92 @@
1
+ Metadata-Version: 2.4
2
+ Name: microsandbox
3
+ Version: 0.1.0
4
+ Summary: Microsandbox Python SDK
5
+ Home-page: https://microsandbox.dev
6
+ Author: Microsandbox Team
7
+ Author-email: team@microsandbox.dev
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: Apache Software License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+ Provides-Extra: dev
14
+ Requires-Dist: pytest>=6.0.0; extra == "dev"
15
+ Requires-Dist: black>=22.0.0; extra == "dev"
16
+ Requires-Dist: isort>=5.0.0; extra == "dev"
17
+ Requires-Dist: mypy>=0.900; extra == "dev"
18
+ Requires-Dist: build>=0.8.0; extra == "dev"
19
+ Requires-Dist: twine>=4.0.0; extra == "dev"
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description
24
+ Dynamic: description-content-type
25
+ Dynamic: home-page
26
+ Dynamic: provides-extra
27
+ Dynamic: requires-python
28
+ Dynamic: summary
29
+
30
+ # Microsandbox Python SDK
31
+
32
+ A minimal Python SDK for the Microsandbox project.
33
+
34
+ ## Installation
35
+
36
+ ```bash
37
+ pip install microsandbox
38
+ ```
39
+
40
+ ## Usage
41
+
42
+ ```python
43
+ from microsandbox import hello
44
+
45
+ # Print a greeting
46
+ hello.greet("World")
47
+ ```
48
+
49
+ ## Development
50
+
51
+ ### Setup
52
+
53
+ ```bash
54
+ # Clone the repository
55
+ git clone https://github.com/yourusername/monocore.git
56
+ cd monocore/sdk/python
57
+
58
+ # Create a virtual environment
59
+ python -m venv venv
60
+ source venv/bin/activate # On Windows: venv\Scripts\activate
61
+
62
+ # Install development dependencies
63
+ pip install -e ".[dev]"
64
+ ```
65
+
66
+ ### Building the Package
67
+
68
+ ```bash
69
+ python -m build
70
+ ```
71
+
72
+ ### Publishing to PyPI
73
+
74
+ ```bash
75
+ # Install publishing tools
76
+ pip install twine
77
+
78
+ # Build the distribution
79
+ python -m build
80
+
81
+ # Upload to TestPyPI first (recommended)
82
+ twine upload --repository-url https://test.pypi.org/legacy/ dist/*
83
+
84
+ # Upload to PyPI
85
+ twine upload dist/*
86
+ ```
87
+
88
+ Make sure you have registered for an account on [PyPI](https://pypi.org/) and created an API token for authentication.
89
+
90
+ ## License
91
+
92
+ [MIT](LICENSE)
@@ -0,0 +1,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ microsandbox/__init__.py
5
+ microsandbox/hello.py
6
+ microsandbox.egg-info/PKG-INFO
7
+ microsandbox.egg-info/SOURCES.txt
8
+ microsandbox.egg-info/dependency_links.txt
9
+ microsandbox.egg-info/requires.txt
10
+ microsandbox.egg-info/top_level.txt
@@ -0,0 +1,8 @@
1
+
2
+ [dev]
3
+ pytest>=6.0.0
4
+ black>=22.0.0
5
+ isort>=5.0.0
6
+ mypy>=0.900
7
+ build>=0.8.0
8
+ twine>=4.0.0
@@ -0,0 +1 @@
1
+ microsandbox
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools>=42", "wheel"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,29 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="microsandbox",
5
+ version="0.1.0",
6
+ packages=find_packages(),
7
+ description="Microsandbox Python SDK",
8
+ long_description=open("README.md").read(),
9
+ long_description_content_type="text/markdown",
10
+ author="Microsandbox Team",
11
+ author_email="team@microsandbox.dev",
12
+ url="https://microsandbox.dev",
13
+ classifiers=[
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: Apache Software License",
16
+ "Operating System :: OS Independent",
17
+ ],
18
+ python_requires=">=3.6",
19
+ extras_require={
20
+ "dev": [
21
+ "pytest>=6.0.0",
22
+ "black>=22.0.0",
23
+ "isort>=5.0.0",
24
+ "mypy>=0.900",
25
+ "build>=0.8.0",
26
+ "twine>=4.0.0",
27
+ ],
28
+ },
29
+ )