Metadata-Version: 2.4
Name: open-sysml
Version: 0.0.1
Summary: Placeholder release for an upcoming OpenMBEE Open SysML package; not intended for general use yet.
Project-URL: Source, https://github.com/openmbee/open-sysml
Author: OpenMBEE maintainers
License: Apache-2.0
Keywords: open-sysml,openmbee,placeholder,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

# open-sysml (PyPI name hold)

This is a **minimal placeholder** on PyPI to reserve the `open-sysml` distribution name for the OpenMBEE / Open SysML effort.

- **Do not depend on this package** for production use until a real release is published.
- The importable package is `open_sysml` (Python module names cannot contain hyphens).
- Replace `Source` / URLs in `pyproject.toml` with the canonical repository if it differs.

## Build and upload (maintainers)

```bash
cd open-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 (requires a **test.pypi.org** API token):

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