rosclaw 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.
rosclaw-0.0.1/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.
rosclaw-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: rosclaw
3
+ Version: 0.0.1
4
+ Summary: Placeholder package to reserve the PyPI name 'rosclaw'
5
+ Author-email: Your Name <your.email@example.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/yourusername/rosclaw
8
+ Project-URL: Repository, https://github.com/yourusername/rosclaw
9
+ Keywords: placeholder,rosclaw
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Requires-Python: >=3.8
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Dynamic: license-file
23
+
24
+ # rosclaw
25
+
26
+ Placeholder package to reserve the PyPI name **rosclaw**.
27
+
28
+ This package is not intended for use. Install it only if you need the name reserved for a future project.
29
+
30
+ ## Publishing to PyPI (reserve the name)
31
+
32
+ 1. Create an account at [pypi.org](https://pypi.org/account/register/) if needed.
33
+ 2. Install build and twine: `pip install build twine`
34
+ 3. From the project root:
35
+ ```bash
36
+ python -m build
37
+ twine upload dist/*
38
+ ```
39
+ 4. Use your PyPI username and password (or token). For first-time upload, the name `rosclaw` will be reserved.
40
+
41
+ ## License
42
+
43
+ MIT
@@ -0,0 +1,20 @@
1
+ # rosclaw
2
+
3
+ Placeholder package to reserve the PyPI name **rosclaw**.
4
+
5
+ This package is not intended for use. Install it only if you need the name reserved for a future project.
6
+
7
+ ## Publishing to PyPI (reserve the name)
8
+
9
+ 1. Create an account at [pypi.org](https://pypi.org/account/register/) if needed.
10
+ 2. Install build and twine: `pip install build twine`
11
+ 3. From the project root:
12
+ ```bash
13
+ python -m build
14
+ twine upload dist/*
15
+ ```
16
+ 4. Use your PyPI username and password (or token). For first-time upload, the name `rosclaw` will be reserved.
17
+
18
+ ## License
19
+
20
+ MIT
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "rosclaw"
7
+ version = "0.0.1"
8
+ description = "Placeholder package to reserve the PyPI name 'rosclaw'"
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ authors = [{ name = "Your Name", email = "your.email@example.com" }]
12
+ keywords = ["placeholder", "rosclaw"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Intended Audience :: Developers",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3.8",
19
+ "Programming Language :: Python :: 3.9",
20
+ "Programming Language :: Python :: 3.10",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ ]
24
+ requires-python = ">=3.8"
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/yourusername/rosclaw"
28
+ Repository = "https://github.com/yourusername/rosclaw"
29
+
30
+ [tool.setuptools.packages.find]
31
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ """Placeholder package to reserve the PyPI name 'rosclaw'."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: rosclaw
3
+ Version: 0.0.1
4
+ Summary: Placeholder package to reserve the PyPI name 'rosclaw'
5
+ Author-email: Your Name <your.email@example.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/yourusername/rosclaw
8
+ Project-URL: Repository, https://github.com/yourusername/rosclaw
9
+ Keywords: placeholder,rosclaw
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Requires-Python: >=3.8
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Dynamic: license-file
23
+
24
+ # rosclaw
25
+
26
+ Placeholder package to reserve the PyPI name **rosclaw**.
27
+
28
+ This package is not intended for use. Install it only if you need the name reserved for a future project.
29
+
30
+ ## Publishing to PyPI (reserve the name)
31
+
32
+ 1. Create an account at [pypi.org](https://pypi.org/account/register/) if needed.
33
+ 2. Install build and twine: `pip install build twine`
34
+ 3. From the project root:
35
+ ```bash
36
+ python -m build
37
+ twine upload dist/*
38
+ ```
39
+ 4. Use your PyPI username and password (or token). For first-time upload, the name `rosclaw` will be reserved.
40
+
41
+ ## License
42
+
43
+ MIT
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/rosclaw/__init__.py
5
+ src/rosclaw.egg-info/PKG-INFO
6
+ src/rosclaw.egg-info/SOURCES.txt
7
+ src/rosclaw.egg-info/dependency_links.txt
8
+ src/rosclaw.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ rosclaw