diff --git a/.codecov.yml b/.codecov.yml deleted file mode 100644 index 176bdfd..0000000 --- a/.codecov.yml +++ /dev/null @@ -1,9 +0,0 @@ -codecov: - require_ci_to_pass: yes - -coverage: - precision: 2 - range: [97, 100] - -comment: - layout: 'header, diff, flags, files, footer' diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 354b4b7..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,23 +0,0 @@ -version: 2 -updates: -- package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: weekly - time: "11:00" - day: wednesday - timezone: "America/Mexico_City" - open-pull-requests-limit: 5 - reviewers: - - "cuenca-mx/admin" - -- package-ecosystem: pip - directory: "/" - schedule: - interval: weekly - time: "11:00" - day: wednesday - timezone: "America/Mexico_City" - open-pull-requests-limit: 5 - reviewers: - - "cuenca-mx/admin" diff --git a/.github/workflows/auto_merge.yml b/.github/workflows/auto_merge.yml deleted file mode 100644 index 25db3d0..0000000 --- a/.github/workflows/auto_merge.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: auto-merge - -permissions: - contents: read - -on: - pull_request: - -jobs: - auto-merge: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: ahmadnassri/action-dependabot-auto-merge@v2 - with: - github-token: ${{ secrets.DEPENDABOT_AUTOMERGE }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index 0db0bd6..0000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: docs - -permissions: - contents: read - -on: - release: - types: [published] - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up Python 3.13 - uses: actions/setup-python@v5 - with: - python-version: 3.13 - - name: Install dependencies - run: make install-test - - name: Install mkdocs - run: pip install -qU mkdocs-material mkdocstrings - - name: Deploy Github Page - run: mkdocs gh-deploy --force diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index d0b2a6e..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: release - -permissions: - contents: read - -on: - release: - types: [published] - -jobs: - publish-pypi: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: Set up Python 3.8 - uses: actions/setup-python@v2.2.2 - with: - python-version: 3.8 - - name: Install dependencies - run: pip install -qU setuptools wheel twine - - name: Generating distribution archives - run: python setup.py sdist bdist_wheel - - name: Publish distribution 📦 to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - user: __token__ - password: ${{ secrets.pypi_password }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index cba0572..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: test - -permissions: - contents: read - -on: push - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: 3.13 - - name: Install dependencies - run: make install-test - - name: Lint - run: make lint - - pytest: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: make install-test - - name: Run tests - run: pytest -x - - coverage: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Setup Python - uses: actions/setup-python@v5 - with: - python-version: 3.13 - - name: Install dependencies - run: make install-test - - name: Generate coverage report - run: pytest --cov-report=xml - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage.xml - flags: unittests - name: codecov-umbrella - fail_ci_if_error: true diff --git a/.gitignore b/.gitignore deleted file mode 100644 index c68ee63..0000000 --- a/.gitignore +++ /dev/null @@ -1,120 +0,0 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -.hypothesis/ -.pytest_cache/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# pyenv -.python-version - -# celery beat schedule file -celerybeat-schedule - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ - -# pycharm -.idea/ - -# visual studio code -.vscode/ - -# environment variables -.env - -# envrc -.envrc - -# others -.DS_Store - diff --git a/facturapi/py.typed b/.nojekyll similarity index 100% rename from facturapi/py.typed rename to .nojekyll diff --git a/404.html b/404.html new file mode 100644 index 0000000..1b4c388 --- /dev/null +++ b/404.html @@ -0,0 +1,323 @@ + + + +
+ + + + + + + + + + + + + + +
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\n {translation(\"search.result.term.missing\")}: {...missing}\n
\n }\n