Metadata-Version: 2.4
Name: oh-my-code
Version: 0.1.0
Summary: A starter Python package named oh-my-code.
Author: oh-my-code maintainers
License-Expression: MIT
Project-URL: Homepage, https://pypi.org/project/oh-my-code/
Project-URL: Repository, https://github.com/your-org/oh-my-code
Project-URL: Issues, https://github.com/your-org/oh-my-code/issues
Keywords: python,package,pypi
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# oh-my-code

`oh-my-code` is a minimal Python package scaffold, ready to publish on PyPI.

## Quick start

```bash
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip build
python -m pip install -e .
```

## Usage

```python
from oh_my_code import greet

print(greet("developer"))
```

## Build distribution artifacts

```bash
python -m build
```

## Publish to PyPI

```bash
python -m pip install twine
python -m twine upload dist/*
```
