-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bogdan Radko
committed
Jun 14, 2024
0 parents
commit cc6d401
Showing
40 changed files
with
1,969 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[tool.bumpversion] | ||
current_version = "0.0.0" | ||
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)" | ||
serialize = ["{major}.{minor}.{patch}"] | ||
search = "{current_version}" | ||
replace = "{new_version}" | ||
regex = false | ||
ignore_missing_version = false | ||
ignore_missing_files = false | ||
tag = true | ||
sign_tags = false | ||
tag_name = "v{new_version}" | ||
tag_message = "Bump version: {current_version} → {new_version}" | ||
allow_dirty = false | ||
commit = true | ||
message = "Bump version: {current_version} → {new_version}" | ||
commit_args = "" | ||
[[tool.bumpversion.files ]] | ||
filename = "./django_kafka/__init__.py" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: Test | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: | ||
- "3.11" | ||
- "3.12" | ||
django: | ||
- "4.0" | ||
- "4.1" | ||
- "4.2" | ||
- "5.0" | ||
exclude: | ||
- python-version: "3.11" | ||
django: "4.0" | ||
- python-version: "3.12" | ||
django: "4.0" | ||
- python-version: "3.12" | ||
django: "4.1" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Update pip | ||
run: python -m pip install --upgrade pip | ||
|
||
- name: Install Django ${{ matrix.django }} | ||
run: pip install "Django~=${{ matrix.django }}" | ||
|
||
- name: Install package | ||
run: pip install -e . | ||
|
||
- name: Run tests | ||
run: python ./example/manage.py test | ||
|
||
publish: | ||
name: Build and publish Python 🐍 distributions 📦 to PyPI | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
|
||
- name: Install req packages | ||
run: python -m pip install -U setuptools build | ||
|
||
- name: Build a binary wheel and a source tarball | ||
run: python -m build --sdist --wheel | ||
|
||
- name: Publish Package on PyPI | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | ||
uses: pypa/gh-action-pypi-publish@release/v1.8 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
*.pyc | ||
.idea/ | ||
.pycharm_helpers/ | ||
.ipython/ | ||
dist/ | ||
*.egg-info/ | ||
build/ | ||
*.sw* | ||
.coverage | ||
.bash_history | ||
db.sqlite3 | ||
.ruff_cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
exclude = [ | ||
".git", | ||
"__pycache", | ||
"migrations", | ||
"src", | ||
"docs", | ||
"rh_django_shared", | ||
"example/conf/settings.py", | ||
] | ||
|
||
[lint] | ||
dummy-variable-rgx = "_|dummy" | ||
# See https://github.com/astral-sh/ruff?tab=readme-ov-file#rules for all supported rules | ||
select = [ | ||
"A", | ||
"B", | ||
"BLE", | ||
"C", | ||
"C4", | ||
"C90", | ||
"COM", | ||
"DJ", | ||
"DTZ", | ||
"E", | ||
"ERA", | ||
"F", | ||
"G", | ||
"I", | ||
"ICN", | ||
"INP", | ||
"N", | ||
"PIE", | ||
"PGH", | ||
"PL", | ||
"PTH", | ||
"RET", | ||
"RSE", | ||
"RUF", | ||
"S", | ||
"SIM", | ||
"T20", | ||
"UP", | ||
"W", | ||
"YTT", | ||
] | ||
ignore = [ | ||
# "N802", # Function name `{name}` should be lowercase | ||
"N803", # Argument name `{name}` should be lowercase | ||
# "N806", # Variable `{name}` in function should be lowercase | ||
# "N815", # Variable `{name}` in class scope should not be mixedCase | ||
# "N818", # Exception name `{name}` should be named with an Error suffix | ||
# "A003", # Class attribute `{name}` is shadowing a python builtin | ||
# "S101", # Use of `assert` detected | ||
# "UP007", # Use `X | Y` for type annotations | ||
"S105", # Possible hardcoded password: "{}" | ||
# "PLR0913", # Too many arguments to function call ({c_args}/{max_args}) | ||
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar` | ||
] | ||
|
||
[lint.mccabe] | ||
max-complexity = 16 | ||
|
||
[lint.pycodestyle] | ||
max-line-length = 88 | ||
|
||
[lint.pylint] | ||
max-branches = 16 | ||
max-args = 10 | ||
max-public-methods = 50 | ||
|
||
[format] | ||
skip-magic-trailing-comma = false |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM python:3.12-slim | ||
|
||
ENV PYTHONUNBUFFERED 1 | ||
ENV LC_ALL=C.UTF-8 | ||
|
||
RUN useradd -m app | ||
|
||
USER app | ||
WORKDIR /app | ||
|
||
ADD ./example/requirements.txt /app/example/ | ||
|
||
ENV PATH /home/app/venv/bin:$PATH | ||
|
||
RUN python3 -m venv ~/venv && \ | ||
pip install -r ./example/requirements.txt | ||
|
||
ADD . /app/ | ||
|
||
ENV DJANGO_SETTINGS_MODULE conf.settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Copyright 2024 RegioHelden GmbH | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include LICENSE README.md | ||
recursive-include django_kafka/ * |
Oops, something went wrong.