Skip to content

Commit 168997e

Browse files
committed
chore: poetry+ruff
1 parent ae36af0 commit 168997e

16 files changed

+938
-290
lines changed

.github/dependabot.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "pip"
4-
directory: "/"
5-
schedule:
6-
interval: "daily"
7-
- package-ecosystem: "github-actions"
8-
directory: "/"
9-
schedule:
10-
interval: "daily"
11-
- package-ecosystem: "docker"
12-
directory: "/"
13-
schedule:
14-
interval: "daily"
3+
- package-ecosystem: pip
4+
directory: /
5+
schedule:
6+
interval: daily
7+
- package-ecosystem: github-actions
8+
directory: /
9+
schedule:
10+
interval: daily
11+
- package-ecosystem: docker
12+
directory: /
13+
schedule:
14+
interval: daily

.github/workflows/release.yml

+43-65
Original file line numberDiff line numberDiff line change
@@ -6,81 +6,59 @@ name: Release Package
66
on:
77
push:
88
tags:
9-
- 'v*'
9+
- v*
10+
env:
11+
PYTHON_VERSION: '3.11'
12+
PROJECT_NAME: deepl_cli
1013

1114
jobs:
12-
check:
13-
runs-on: ubuntu-latest
14-
steps:
15-
- name: Checkout code
16-
uses: actions/checkout@v3
17-
- name: Setup Python
18-
uses: actions/setup-python@v4
19-
- name: Run pre-commit
20-
uses: pre-commit/[email protected]
2115
release:
22-
needs: check
23-
name: Create Release
2416
runs-on: ubuntu-latest
2517
steps:
26-
- name: Checkout code
27-
uses: actions/checkout@v3
28-
- name: Create Release
29-
id: create_release
30-
uses: actions/create-release@v1
31-
env:
32-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33-
with:
34-
tag_name: ${{ github.ref }}
35-
release_name: Release ${{ github.ref }}
36-
draft: false
37-
prerelease: false
18+
- uses: actions/checkout@v3
19+
20+
- id: create_release
21+
uses: actions/create-release@v1
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
with:
25+
tag_name: ${{ github.ref }}
26+
release_name: Release ${{ github.ref }}
27+
draft: false
28+
prerelease: false
3829
pypi:
3930
needs: release
4031
runs-on: ubuntu-latest
4132
steps:
42-
- uses: actions/checkout@v3
43-
with:
44-
persist-credentials: false
45-
- name: Setup Python
46-
uses: actions/setup-python@v4
47-
with:
48-
python-version: "3.x"
49-
- name: Install dependencies
50-
run: |
51-
python -m pip install --upgrade pip
52-
pip install setuptools wheel twine
53-
- name: Build
54-
run: |
55-
python setup.py sdist bdist_wheel
56-
- name: Publish a Python distribution to PyPI
57-
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
58-
uses: pypa/gh-action-pypi-publish@master
59-
with:
60-
user: __token__
61-
password: ${{ secrets.PYPI_PASSWORD }}
62-
skip_existing: true
63-
verbose: true
33+
- uses: actions/checkout@v3
34+
with:
35+
persist-credentials: false
36+
- name: Build and publish to pypi
37+
uses: JRubics/[email protected]
38+
with:
39+
pypi_token: ${{ secrets.PYPI_PASSWORD }}
6440
ghcr:
6541
needs: release
6642
runs-on: ubuntu-latest
6743
steps:
68-
- uses: actions/checkout@v3
69-
- uses: docker/metadata-action@v4
70-
id: meta
71-
with:
72-
images: ghcr.io/${{ github.repository }}
73-
tags: |
74-
type=semver,pattern={{version}}
75-
type=semver,pattern={{major}}.{{minor}}
76-
- uses: docker/login-action@v2
77-
with:
78-
registry: ghcr.io
79-
username: ${{ github.repository_owner }}
80-
password: ${{ secrets.GITHUB_TOKEN }}
81-
- uses: docker/build-push-action@v4
82-
with:
83-
context: .
84-
push: true
85-
tags: ${{ steps.meta.outputs.tags }}
86-
labels: ${{ steps.meta.outputs.labels }}
44+
- uses: actions/checkout@v3
45+
- uses: docker/metadata-action@v4
46+
id: meta
47+
with:
48+
images: ghcr.io/${{ github.repository }}
49+
tags: |
50+
type=semver,pattern={{version}}
51+
type=semver,pattern={{major}}.{{minor}}
52+
- uses: docker/login-action@v2
53+
with:
54+
registry: ghcr.io
55+
username: ${{ github.repository_owner }}
56+
password: ${{ secrets.GITHUB_TOKEN }}
57+
- uses: docker/build-push-action@v4
58+
with:
59+
context: .
60+
push: true
61+
tags: ${{ steps.meta.outputs.tags }}
62+
labels: ${{ steps.meta.outputs.labels }}
63+
build-args: |
64+
VERSION=${{ github.event.release.tag_name }}

.github/workflows/test.yml

+13-16
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test
33
on:
44
push:
55
branches:
6-
- master
6+
- master
77
pull_request:
88

99
jobs:
@@ -14,35 +14,32 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os:
17-
- ubuntu-latest
18-
- windows-latest
19-
- macos-latest
17+
- ubuntu-latest
18+
- windows-latest
19+
- macos-latest
2020
python-version:
21-
# - '3.8'
22-
- '3.11'
21+
# - '3.8'
22+
- '3.11'
2323

2424
steps:
2525
- name: Checkout Repository
2626
uses: actions/checkout@v3
27-
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v4
27+
- uses: actions/setup-python@v4
2928
with:
30-
cache: 'pip'
31-
cache-dependency-path: setup.cfg
29+
cache: pip
30+
cache-dependency-path: poetry.lock
3231
python-version: ${{ matrix.python-version }}
33-
- name: Install dependencies
34-
run: |
35-
python -m pip install -U pip
36-
pip install -e .[dev]
32+
- uses: abatilo/actions-poetry@v2
33+
- run: poetry install --no-interaction
3734
- name: Test
3835
if: ${{ runner.os == 'Windows' }}
39-
run: pytest tests/ --cov-report=term
36+
run: poetry run task test
4037
- name: Test & publish code coverage
4138
if: ${{ runner.os != 'Windows' && env.CC_TEST_REPORTER_ID != '' }}
4239
uses: paambaati/[email protected]
4340
env:
4441
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
4542
with:
46-
coverageCommand: pytest --cov=./ tests/ --cov-report xml:cov.xml --cov-report=term
43+
coverageCommand: poetry run task test:ci
4744
coverageLocations: ${{github.workspace}}/cov.xml:coverage.py
4845
debug: true

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
cov.xml
2+
13
# https://github.com/github/gitignore/blob/master/Python.gitignore
24
# Byte-compiled / optimized / DLL files
35
__pycache__/

.pre-commit-config.yaml

+52-51
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,53 @@
11
repos:
2-
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.4.0
4-
hooks:
5-
- id: check-added-large-files
6-
- id: check-ast
7-
- id: check-case-conflict
8-
- id: check-executables-have-shebangs
9-
- id: check-merge-conflict
10-
- id: check-symlinks
11-
- id: check-yaml
12-
- id: debug-statements
13-
- id: destroyed-symlinks
14-
# - id: double-quote-string-fixer
15-
- id: end-of-file-fixer
16-
exclude: tests/test_changes/
17-
files: \.(py|sh|rst|yml|yaml)$
18-
# - id: name-tests-test
19-
- id: mixed-line-ending
20-
- id: trailing-whitespace
21-
files: \.(py|sh|rst|yml|yaml)$
22-
# - id: requirements-txt-fixer
23-
- repo: https://github.com/asottile/setup-cfg-fmt
24-
rev: v2.2.0
25-
hooks:
26-
- id: setup-cfg-fmt
27-
- repo: https://github.com/asottile/pyupgrade
28-
rev: v3.3.1
29-
hooks:
30-
- id: pyupgrade
31-
- repo: https://github.com/psf/black
32-
rev: 23.1.0
33-
hooks:
34-
- id: black
35-
- repo: https://github.com/pycqa/isort
36-
rev: 5.12.0
37-
hooks:
38-
- id: isort
39-
- repo: https://github.com/PyCQA/flake8
40-
rev: 6.0.0
41-
hooks:
42-
- id: flake8
43-
- repo: https://github.com/pre-commit/mirrors-mypy
44-
rev: v1.1.1
45-
hooks:
46-
- id: mypy
47-
additional_dependencies:
48-
- types-setuptools
49-
- playwright
50-
- install-playwright
51-
files: ^deepl/
52-
args: []
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.4.0
4+
hooks:
5+
- id: check-added-large-files
6+
args: [--maxkb=2000]
7+
- id: check-ast
8+
- id: check-case-conflict
9+
- id: check-executables-have-shebangs
10+
- id: check-merge-conflict
11+
- id: check-symlinks
12+
- id: check-toml
13+
- id: check-yaml
14+
- id: debug-statements
15+
- id: destroyed-symlinks
16+
- id: end-of-file-fixer
17+
files: \.(py|sh|rst|yml|yaml)$
18+
- id: mixed-line-ending
19+
- id: trailing-whitespace
20+
files: \.(py|sh|rst|yml|yaml)$
21+
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
22+
rev: v2.7.0
23+
hooks:
24+
- id: pretty-format-yaml
25+
args: [--autofix, --indent, '2']
26+
- repo: https://github.com/tox-dev/pyproject-fmt
27+
rev: 0.9.1
28+
hooks:
29+
- id: pyproject-fmt
30+
- repo: https://github.com/psf/black
31+
rev: 23.1.0
32+
hooks:
33+
- id: black
34+
- repo: https://github.com/charliermarsh/ruff-pre-commit
35+
rev: v0.0.248
36+
hooks:
37+
- id: ruff
38+
args: [--fix]
39+
- repo: https://github.com/pre-commit/mirrors-mypy
40+
rev: v1.0.1
41+
hooks:
42+
- id: mypy
43+
files: ^deepl/
44+
args: [--strict]
45+
additional_dependencies:
46+
- playwright
47+
- install-playwright
48+
- repo: https://github.com/igorshubovych/markdownlint-cli
49+
rev: v0.33.0
50+
hooks:
51+
- id: markdownlint
52+
exclude: ^.github/PULL_REQUEST_TEMPLATE.md
53+
args: [--disable=MD013]

Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
FROM mcr.microsoft.com/playwright/python:v1.31.1-focal
22

3-
RUN pip3 install -U --progress-bar=off --no-use-pep517 deepl-cli
3+
ARG VERSION
4+
ENV VERSION ${VERSION:-master}
5+
6+
RUN python -m pip install git+https://github.com/eggplants/deepl-cli@${VERSION}
47

58
ENTRYPOINT ["deepl"]

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
# deepl-cli
22

33
[![Release Package](
4-
https://github.com/eggplants/deepl-cli/workflows/Release%20Package/badge.svg
4+
<https://github.com/eggplants/deepl-cli/workflows/Release%20Package/badge.svg>
55
)](
6-
https://github.com/eggplants/deepl-cli/actions/runs/345738487
6+
<https://github.com/eggplants/deepl-cli/actions/runs/345738487>
77
) [![PyPI version](
8-
https://badge.fury.io/py/deepl-cli.svg
8+
<https://badge.fury.io/py/deepl-cli.svg>
99
)](
10-
https://badge.fury.io/py/deepl-cli
10+
<https://badge.fury.io/py/deepl-cli>
1111
)
1212

1313
[![Maintainability](
14-
https://api.codeclimate.com/v1/badges/a56630914df8538ca93b/maintainability
14+
<https://api.codeclimate.com/v1/badges/a56630914df8538ca93b/maintainability>
1515
)](
16-
https://codeclimate.com/github/eggplants/deepl-cli/maintainability
16+
<https://codeclimate.com/github/eggplants/deepl-cli/maintainability>
1717
) [![pre-commit.ci status](
18-
https://results.pre-commit.ci/badge/github/eggplants/deepl-cli/master.svg
18+
<https://results.pre-commit.ci/badge/github/eggplants/deepl-cli/master.svg>
1919
)](
20-
https://results.pre-commit.ci/latest/github/eggplants/deepl-cli/master
20+
<https://results.pre-commit.ci/latest/github/eggplants/deepl-cli/master>
2121
)
2222

2323
![image](https://user-images.githubusercontent.com/42153744/159145088-752decf7-8736-44c3-86aa-37fd0cee83df.png)

deepl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
from .deepl import DeepLCLI, DeepLCLIError
44

5-
__all__ = ["DeepLCLI", "DeepLCLIError"]
5+
__all__ = ("DeepLCLI", "DeepLCLIError")

0 commit comments

Comments
 (0)