Metadata-Version: 2.4
Name: sdn-vehicle-test
Version: 0.6.0
Summary: Simple vehicle abstractions with a synchronous in-memory repository: SimpleCar and InMemorySimpleCarRepository
Author: YourName
License: MIT
Project-URL: Homepage, https://github.com/yourname/sdn-vehicle-test
Project-URL: Repository, https://github.com/yourname/sdn-vehicle-test
Keywords: vehicles,repository,in-memory,synchronous,sample
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
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.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# sdn-vehicle-test

Simple vehicle abstractions with a synchronous in-memory repository.

## Install
```bash
pip install sdn-vehicle-test
```

## Usage
```python
from sdn_vehicle_test import SimpleCar, InMemorySimpleCarRepository

repo = InMemorySimpleCarRepository()
car = SimpleCar('BMW', 'M3', 2023)
repo.add(car)

all_cars = repo.get_all()
print(f"Total cars: {len(all_cars)}")
```

