[project] name = "worker_{{ cookiecutter.slug }}" version = "0.1.0" description = "{{ cookiecutter.description }}" dynamic = ["dependencies"] requires-python = ">=3.10" [project.scripts] worker-{{ cookiecutter.slug }} = "worker_{{ cookiecutter.slug }}.worker:main" [tool.setuptools.dynamic] dependencies = { file = ["requirements.txt"] } [tool.ruff] exclude = [".git", "__pycache__"] ignore = ["E501"] select = ["E", "F", "T1", "W", "I"] [tool.ruff.isort] known-first-party = ["arkindex", "arkindex_worker"] known-third-party = ["pytest", "setuptools"]