Metadata-Version: 2.4
Name: grft-test-simple-car-e2e
Version: 0.2.0
Summary: Simple car abstractions
Author: jwaszczynski
License: MIT
Project-URL: Homepage, https://github.com/grft-dev/grft-test-simple-car
Project-URL: Repository, https://github.com/grft-dev/grft-test-simple-car
Keywords: car,sample,e2e
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


# grft-test-simple-car

Simple car abstractions.

## Install
```bash
pip install grft-test-simple-car-e2e
```

## Usage
```python
from grft_test_simple_car import SimpleCar

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