Metadata-Version: 2.4
Name: sdn-test-simple-car
Version: 0.1.0
Summary: Simple vehicle abstractions
Author: jwaszczynski
License: MIT
Project-URL: Homepage, https://github.com/yourname/sdn-test-simple-car
Project-URL: Repository, https://github.com/yourname/sdn-test-simple-car
Keywords: vehicles,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-test-simple-car

Simple vehicle abstractions.

## Install
```bash
pip install sdn-test-simple-car
```

## Usage
```python
from sdn_test_simple_car import SimpleCar

car = SimpleCar('Toyota', 'Corolla', 2018)
car.start()
print(car)
```

