Metadata-Version: 2.4
Name: votedev
Version: 0.1.0
Summary: Open source code base for Vote.dev
Author: James A. Rolfsen
License: MIT
Project-URL: Homepage, https://github.com/jrolf/votedev
Project-URL: Repository, https://github.com/jrolf/votedev
Project-URL: Issues, https://github.com/jrolf/votedev/issues
Keywords: vote,voting,election
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# votedev

Open source code base for Vote.dev

## Installation

```bash
pip install votedev
```

## Quick Start

```python
from votedev import hello

print(hello())  # "Hello from votedev v0.1.0!"
```

## Requirements

- Python 3.11+

## License

MIT License - see [LICENSE](LICENSE) for details.

## Development

This project uses a `develop` branch workflow:

1. Development work happens on the `develop` branch
2. Version bumps are made in `pyproject.toml` and `src/votedev/__init__.py`
3. Merging `develop` into `main` triggers automatic publishing to PyPI
