Metadata-Version: 2.4
Name: sysml
Version: 0.0.1
Summary: Placeholder release for an upcoming Starforge-related package; not intended for general use yet.
Project-URL: Source, https://github.com/your-org/starforge_jupyter_notebook
Author: Starforge maintainers
License: Apache-2.0
Keywords: placeholder,starforge,sysml
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# sysml (PyPI name hold)

This is a **minimal placeholder** on PyPI to reserve the `sysml` distribution name for the Starforge / related tooling effort.

- **Do not depend on this package** for production use until a real release is published.
- Replace `Source` / URLs in `pyproject.toml` with the canonical repository before wider publication.

## Build and upload (maintainers)

```bash
cd sysml
python -m pip install --upgrade build twine
python -m build
twine check dist/*
twine upload dist/*
```

Use [TestPyPI](https://test.pypi.org/) first if you want a dry run:

```bash
twine upload --repository testpypi dist/*
```
