[build-system] requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"] build-backend = "setuptools.build_meta" [project] name = "dr.botzo-idlerpg" description = "An RPG in which players idle online in order to gain levels and battle monsters and each other." readme = "README.md" license = {text = "AGPL-3.0-or-later"} authors = [ {name = "Brian S. Stephan", email = "bss@incorporeal.org"}, ] requires-python = ">=3.10" dependencies = ["Django", "irc"] dynamic = ["version"] classifiers = [ "Framework :: Django", "Programming Language :: Python :: 3", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Operating System :: OS Independent", "Topic :: Games/Entertainment :: Role-Playing", ] [project.urls] "Homepage" = "https://git.incorporeal.org/bss/dr.botzo-idlerpg" "Changelog" = "https://git.incorporeal.org/bss/dr.botzo-idlerpg/releases" "Bug Tracker" = "https://git.incorporeal.org/bss/dr.botzo-idlerpg/issues" [project.optional-dependencies] dev = ["bandit", "Django", "dlint", "flake8", "flake8-blind-except", "flake8-builtins", "flake8-docstrings", "flake8-executable", "flake8-fixme", "flake8-isort", "flake8-logging-format", "flake8-mutable", "flake8-pyproject", "pip-tools", "pytest", "pytest-cov", "pytest-django", "reuse", "safety", "tox"] [tool.flake8] enable-extensions = "G,M" exclude = [".tox/", "tests/test_project/", "_version.py", "**/migrations/"] extend-ignore = "T101" max-complexity = 10 max-line-length = 120 [tool.isort] line_length = 120 [tool.mypy] ignore_missing_imports = true [tool.pytest.ini_options] python_files = ["*_tests.py", "tests.py", "test_*.py"] DJANGO_SETTINGS_MODULE = "dr_botzo.settings" pythonpath = "tests/test_project" [tool.setuptools] packages = [ "idlerpg", ] [tool.setuptools_scm] write_to = "idlerpg/_version.py"