Metadata-Version: 2.1
Name: plate_package
Version: 0.0.2
Summary: 
Home-page: https://github.com/lukin0110/poetry-copier-package-test/
License: Proprietary
Requires-Python: >=3.11.6,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: poethepoet (>=0.24.4)
Requires-Dist: pydantic (>=2.5.3)
Project-URL: Repository, https://github.com/lukin0110/poetry-copier-package-test/
Description-Content-Type: text/markdown

[![Lint and Test](https://github.com/lukin0110/poetry-copier-package-test/actions/workflows/test.yml/badge.svg)](https://github.com/lukin0110/poetry-copier-package-test/actions)

# Plate Package

.

## 🚀 Using

<details>
<summary>Prerequisites</summary>

<details>
<summary>1. Install Docker</summary>

1. Go to [Docker](https://www.docker.com/get-started), download and install docker.
2. [Configure Docker to use the BuildKit build system](https://docs.docker.com/build/buildkit/#getting-started). On macOS and Windows, BuildKit is enabled by default in Docker Desktop.

</details>


</details>

To install this package, run:
```bash
pip install plate_package
```


## ✨ Setup VSCode

Open this repo with VSCode, *build DevContainer* and *Dev Containers: Reopen in Container*.

## ✨ Setup PyCharm

Open this repo with PyCharm, and [configure Docker Compose as a remote interpreter](https://www.jetbrains.com/help/pycharm/using-docker-compose-as-a-remote-interpreter.html#docker-compose-remote) with the `dev` service.

## 🧑‍💻 Contributing

The following commands can be used inside a DevContainer.

#### Run linters
```bash
poe lint
```

#### Run tests
```bash
poe test
```

#### Update poetry lock file
```bash
poetry lock --no-update
```

<details>
<summary>Outside a DevContainer</summary>

1. Run linters
```bash
docker compose run devcontainer poe lint
```
2. Run tests
```bash
docker compose run devcontainer poe test
```
3. Update poetry lock file
```bash
docker compose run devcontainer poetry lock --no-update
# Update the docker image with the new lock file
docker compose build
```
4. Open a shell in docker
```bash
docker compose run devcontainer
```
</details>
<details>
<summary>Shortcuts outside a DevContainer</summary>

1. `make lint`
2. `make test`
3. `make lock`
4. `make shell`
</details>

---
️⚡️ Scaffolded with [Poetry Copier](https://github.com/lukin0110/poetry-copier/)\
🛠️ [Open an issue](https://github.com/lukin0110/poetry-copier/issues/new) if you have any questions or suggestions.

