Skip to main content

Example package published with markpact

Project description

PyPI Publish Example

Przykład publikacji paczki Python do PyPI bezpośrednio z README.

git clone https://github.com/wronai/markpact.git

Użycie

# Podgląd bez publikacji
markpact examples/pypi-publish/README.md --publish --dry-run

# Publikacja do TestPyPI
markpact examples/pypi-publish/README.md --publish --registry pypi-test

# Publikacja do PyPI z bump wersji
markpact examples/pypi-publish/README.md --publish --bump patch

# Publikacja do PyPI (produkcja)
markpact examples/pypi-publish/README.md --publish

Instalacja i użycie CLI

Po publikacji na PyPI, możesz zainstalować i używać CLI:

# Instalacja
pip install markpact-example-pypi

# Użycie CLI
markpact-example-pypi
# Output: Hello, World!

# Z niestandardowym imieniem
markpact-example-pypi --name "Markpact"
# Output: Hello, Markpact!

# Dodawanie liczb
markpact-example-pypi --add 5 3
# Output: 5 + 3 = 8

Konfiguracja

Upewnij się, że masz skonfigurowany ~/.pypirc:

[pypi]
username = __token__
password = pypi-xxxx

[testpypi]
username = __token__
password = pypi-xxxx

publishing:

markpact examples/pypi-publish/README.md --publish

generated files:

./sandbox/
└── markpact_example_pypi
    ├── cli.py
    ├── dist
       ├── markpact_example_pypi-0.1.15-py3-none-any.whl
       └── markpact_example_pypi-0.1.15.tar.gz
    ├── __init__.py
    ├── pyproject.toml
    └── README.md

output:

[markpact] Parsing examples/pypi-publish/README.md
[markpact] wrote /home/tom/github/wronai/markpact/sandbox/markpact_example_pypi/__init__.py
[markpact] wrote /home/tom/github/wronai/markpact/sandbox/markpact_example_pypi/cli.py
[markpact] Bumped version to 0.1.7
[markpact] Publishing markpact-example-pypi v0.1.7 to PyPI...
[markpact] Building package...
[markpact] Uploading to PyPI...
[markpact] Found ~/.pypirc at: /home/tom/.pypirc
[markpact] ~/.pypirc section [pypi] parsed:
    username = __token__
    password = pypi-AgE...
[markpact] Running twine command:
    /home/tom/miniconda3/bin/python3 -m twine upload --config-file /home/tom/.pypirc --verbose dist/*
[markpact]  Published to PyPI
[markpact] Version: 0.1.7
[markpact] URL: https://pypi.org/project/markpact-example-pypi/
[markpact] Updated version in examples/pypi-publish/README.md

published project: https://pypi.org/project/markpact-example-pypi/


registry = pypi
name = markpact-example-pypi
version = 0.1.18
description = Example package published with markpact
author = Your Name
license = MIT
keywords = example, markpact, demo
repository = https://github.com/your/repo
"""Example package published with markpact"""

__version__ = "0.1.0"

def hello(name: str = "World") -> str:
    """Say hello to someone."""
    return f"Hello, {name}!"

def add(a: int, b: int) -> int:
    """Add two numbers."""
    return a + b
"""CLI for example package"""

import argparse
from . import hello, add

def main():
    parser = argparse.ArgumentParser(description="Example CLI")
    parser.add_argument("--name", default="World", help="Name to greet")
    parser.add_argument("--add", nargs=2, type=int, help="Add two numbers")
    
    args = parser.parse_args()
    
    if args.add:
        result = add(args.add[0], args.add[1])
        print(f"{args.add[0]} + {args.add[1]} = {result}")
    else:
        print(hello(args.name))

if __name__ == "__main__":
    main()
# No HTTP tests for CLI package

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

markpact_example_pypi-0.1.19.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

markpact_example_pypi-0.1.19-py3-none-any.whl (2.7 kB view details)

Uploaded Python 3

File details

Details for the file markpact_example_pypi-0.1.19.tar.gz.

File metadata

  • Download URL: markpact_example_pypi-0.1.19.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for markpact_example_pypi-0.1.19.tar.gz
Algorithm Hash digest
SHA256 4eb32606c91aa5c137f737a6c662f7dd5a6db770f512a92c9aafabe0e6f1d734
MD5 e420a855bf307a518da7b2f8d661b75e
BLAKE2b-256 26f3f415b7b6764bded14197fcc25aed425982fbaacaa233635c1642dd58ce0d

See more details on using hashes here.

File details

Details for the file markpact_example_pypi-0.1.19-py3-none-any.whl.

File metadata

File hashes

Hashes for markpact_example_pypi-0.1.19-py3-none-any.whl
Algorithm Hash digest
SHA256 c4b291a103912cf5bb6ee1caabc4b1dd15dd26b5c736b06ef9ed7a637b4fb2cb
MD5 166f932941c836d33c12ba1a4d408a18
BLAKE2b-256 0b864d2aa413ccb6b66358c36c5d6a095eaa5080cd6627f40dd174dba62a35fc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page