Metadata-Version: 2.4
Name: ecs-alchemy
Version: 0.1.0a1
Summary: An Entity Component System architecture module for Flask projects.
Project-URL: Homepage, https://github.com/Cody-Jane-Stahl/ecs
Project-URL: Bug Tracker, https://github.com/Cody-Jane-Stahl/ecs/issues
Author-email: Cody-Jane Stahl <cody-jane.stahl@gmail.com>
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: click
Requires-Dist: flask
Requires-Dist: sqlalchemy
Description-Content-Type: text/markdown

# ecs-alchemy

**WORK IN PROGRESS - ALPHA VERSION**

This project provides an Entity Component System (ECS) architecture module for projects using SQLAlchemy.

## Installation

```bash
pip install ecs-alchemy
```

## Usage

```python
# Example usage to be added here
```

## Building and Uploading to PyPI

**1. Install Build Tools:**

```bash
pip install --upgrade build twine
```

**2. Build the Package:**

```bash
python3 -m build
```

**3. Upload to TestPyPI (Recommended):**

```bash
python3 -m twine upload --repository testpypi dist/*
```

**4. Install from TestPyPI:**

```bash
pip install --index-url https://test.pypi.org/simple/ --no-deps ecs-alchemy
```

**5. Upload to PyPI:**

```bash
python3 -m twine upload dist/*
```
