Metadata-Version: 2.4
Name: gitspaces
Version: 0.0.1
Summary: Dummy package to reserve the name gitspaces on PyPI
Author-email: Your Name <you@example.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# gitspaces

Dummy package to reserve the name `gitspaces` on PyPI.

This package is intentionally minimal and contains a placeholder function.

Build and upload (local):
  python3 -m venv .venv
  source .venv/bin/activate
  python -m pip install --upgrade pip build setuptools wheel twine
  python -m build
  # Optional test upload:
  # python -m twine upload --repository-url https://test.pypi.org/legacy/ -u __token__ -p pypi-<TESTPYPI_TOKEN> dist/*
  # Upload to real PyPI (reserves the name):
  # python -m twine upload -u __token__ -p pypi-<PYPI_TOKEN> dist/*

This README was generated by generator.py. Use uploader.py from the repo root to build/upload:
  python3 uploader.py packages/gitspaces build
  python3 uploader.py packages/gitspaces test.pypi
  python3 uploader.py packages/gitspaces pypi
