[build-system] requires = ["setuptools>=68.0"] build-backend = "setuptools.build_meta" [project] name = "derp" version = "0.1.0" description = "Asyncio IRC bot with plugin system" requires-python = ">=3.11" license = "MIT" dependencies = [ "maxminddb>=2.0", "PySocks>=1.7.1", ] [project.scripts] derp = "derp.cli:main" [tool.setuptools.packages.find] where = ["src"] [tool.pytest.ini_options] testpaths = ["tests"] [tool.ruff] line-length = 99 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "W", "I"]