[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "derivepassphrase" dynamic = ["version"] description = "An almost faithful Python reimplementation of James Coglan's vault." readme = "README.md" requires-python = ">=3.11" license = "MIT" keywords = [] authors = [ { name = "Marco Ricci", email = "m@the13thletter.info" }, ] classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ "click", ] [project.urls] Documentation = "https://github.com/the-13th-letter/derivepassphrase#readme" Issues = "https://github.com/the-13th-letter/derivepassphrase/issues" Source = "https://github.com/the-13th-letter/derivepassphrase" [project.scripts] derivepassphrase = "derivepassphrase.cli:derivepassphrase" [tool.mypy] mypy_path = '$MYPY_CONFIG_FILE_DIR/src' explicit_package_bases = true implicit_reexport = false sqlite_cache = true [tool.pytest.ini_options] addopts = '--doctest-modules' pythonpath = ['src'] testpaths = ['tests'] xfail_strict = true [tool.hatch.version] path = "src/derivepassphrase/__about__.py" [tool.hatch.envs.types] extra-dependencies = [ "mypy>=1.0.0", ] [tool.hatch.envs.types.scripts] check = "mypy --install-types --non-interactive {args:src/derivepassphrase tests}" [tool.coverage.run] source_pkgs = ["derivepassphrase", "tests"] branch = true parallel = true omit = [ "src/derivepassphrase/__about__.py", ] [tool.coverage.paths] derivepassphrase = ["src/derivepassphrase", "*/derivepassphrase/src/derivepassphrase"] tests = ["tests", "*/derivepassphrase/tests"] [tool.coverage.report] exclude_lines = [ "no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:", ]