diff --git a/.flake8 b/.flake8 deleted file mode 100644 index 0af19c5..0000000 --- a/.flake8 +++ /dev/null @@ -1,13 +0,0 @@ -[flake8] -max-line-length = 176 -select = E303,W293,W291,W292,E305,E231,E302 -exclude = - .tox, - __pycache__, - *.pyc, - .env - venv/* - .venv/* - reports/* - dist/* - lib/* \ No newline at end of file diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml deleted file mode 100644 index 5dd0d7d..0000000 --- a/.pre-commit-config.yaml +++ /dev/null @@ -1,30 +0,0 @@ -repos: - - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 - hooks: - - id: fix-byte-order-marker - - id: check-case-conflict - - id: check-merge-conflict - - id: debug-statements - - id: pretty-format-json - types: [text] - files: \.json(.template)?$ - args: [ --autofix , --no-ensure-ascii, --indent=2, --no-sort-keys] - - id: trailing-whitespace - exclude: '(\/|^)lib\/' - args: [ --markdown-linebreak-ext=md ] - - repo: https://github.com/PyCQA/isort - rev: 5.12.0 - hooks: - - id: isort - exclude: '(\/|^)lib\/' - - repo: https://github.com/psf/black - rev: 23.3.0 - hooks: - - id: black - exclude: '(\/|^)lib\/' - - repo: https://github.com/PyCQA/flake8 - rev: 6.0.0 - hooks: - - id: flake8 - exclude: '(\/|^)lib\/' \ No newline at end of file diff --git a/nixpacks.toml b/nixpacks.toml deleted file mode 100644 index 627d2e7..0000000 --- a/nixpacks.toml +++ /dev/null @@ -1,7 +0,0 @@ -[phases.setup] -nixPkgs = ['python310'] -cmds = ['apt-get update','apt-get install -y --no-install-recommends ffmpeg espeak libavcodec-extra'] -[phases.install] -cmds = ['python -m venv /opt/venv && . /opt/venv/bin/activate && pip install -r requirements.txt && pip install -r requirements-optional.txt'] -[start] -cmd = "python ./app.py" \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index abdab57..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,8 +0,0 @@ -[tool.black] -line-length = 176 -target-version = ['py37'] -include = '\.pyi?$' -extend-exclude = '.+/(dist|.venv|venv|build|lib)/.+' - -[tool.isort] -profile = "black" \ No newline at end of file