cosmosmesh-privacy-preservi.../README.md

22 lines
840 B
Markdown

# CosmosMesh Privacy-Preserving Federated (MVP Scaffold)
This repository contains a minimal MVP scaffold for the CosmosMesh project described in the original spec. It provides:
- A Python package scaffold named cosmosmesh_privacy_preserving_federated_
- A basic pytest suite with a tiny smoke test
- A pyproject.toml build configuration for packaging with setuptools
- A lightweight test runner script (test.sh) that validates packaging and tests
- Documentation to help future contributors understand how to extend the MVP
How to run locally
- Build the package: python3 -m build
- Run tests: pytest -q
- Run the full test script: bash test.sh
Project structure (high level)
- src/cosmosmesh_privacy_preserving_federated_/__init__.py
- tests/test_basic.py
- pyproject.toml
- AGENTS.md
- README.md
- test.sh (added in a subsequent step)