Skip to content

Commit 618b83a

Browse files
committed
Initial commit
0 parents  commit 618b83a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+3157
-0
lines changed

.bumpversion.cfg

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[bumpversion]
2+
current_version = 0.1.0
3+
4+
[bumpversion:file:pyproject.toml]
5+
search = version = "{current_version}"
6+
replace = version = "{new_version}"

.gitignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# https://git-scm.com/docs/gitignore
2+
3+
# Build
4+
/dist/
5+
6+
# Cache
7+
.coverage*
8+
.mypy_cache/
9+
.pytest_cache/
10+
11+
# Editor
12+
/.idea/
13+
/.vscode/
14+
15+
# Environs
16+
/.venv/
17+
poetry.lock
18+
19+
# Notebooks
20+
.ipynb_checkpoints/
21+
22+
# Project
23+
/docs/*
24+
/outputs/*
25+
!**/.gitkeep
26+
27+
# Python
28+
*.py[cod]
29+
__pycache__/

.pre-commit-config.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
4+
default_language_version:
5+
python: python3.11
6+
repos:
7+
# commons
8+
- repo: https://github.com/pre-commit/pre-commit-hooks
9+
rev: v4.4.0
10+
hooks:
11+
- id: check-added-large-files
12+
- id: check-case-conflict
13+
- id: check-merge-conflict
14+
- id: check-toml
15+
- id: check-yaml
16+
- id: end-of-file-fixer
17+
- id: mixed-line-ending
18+
- id: trailing-whitespace
19+
# project
20+
- repo: local
21+
hooks:
22+
- id: invoke-check
23+
name: invoke check
24+
language: system
25+
pass_filenames: false
26+
verbose: true
27+
entry: invoke check

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.11

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# https://docs.docker.com/engine/reference/builder/
2+
3+
# Define
4+
FROM python:3.11
5+
6+
# Install
7+
COPY dist/*.whl .
8+
RUN pip install --no-cache-dir *.whl
9+
10+
# Execute
11+
CMD ["wines", "--help"]

LICENCE.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://creativecommons.org/licenses/by/2.0/

0 commit comments

Comments
 (0)