[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "sultree" version = "0.0.8" description = "SELinux-aware tree command - displays directory trees filtered by SELinux security contexts" readme = "README.md" requires-python = ">=3.8" license = {text = "MIT"} authors = [ {name = "mfw", email = "espadon@outlook.com"}, ] keywords = ["tree", "selinux", "security", "filesystem", "cli"] classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: System :: Systems Administration", "Topic :: Security", ] dependencies = [] [project.optional-dependencies] dev = [ "pytest>=7.0.0", "pytest-cov>=4.0.0", "black>=22.0.0", "flake8>=6.0.0", "mypy>=1.0.0", "bandit>=1.7.0", # Security linting "safety>=2.0.0", # Dependency security scanning ] [project.scripts] sultree = "sultree.__main__:main" [project.urls] # Homepage = "https://github.com/username/sultree" # Repository = "https://github.com/username/sultree" # Issues = "https://github.com/username/sultree/issues" [tool.setuptools.packages.find] where = ["src"] [tool.setuptools.package-dir] "" = "src" # Security-focused linting configuration [tool.bandit] exclude_dirs = ["tests"] skips = [] [tool.black] line-length = 88 target-version = ["py38"] [tool.mypy] python_version = "3.8" warn_return_any = true warn_unused_configs = true disallow_untyped_defs = true disallow_incomplete_defs = true check_untyped_defs = true warn_redundant_casts = true warn_unused_ignores = true strict_optional = true [tool.pytest.ini_options] testpaths = ["tests"] addopts = "--cov=sultree --cov-report=html --cov-report=term-missing"