[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "rf-mapper" version = "1.0.0" description = "RF Environment Scanner - WiFi and Bluetooth signal mapper" readme = "README.md" license = {text = "MIT"} requires-python = ">=3.10" authors = [ {name = "User"} ] keywords = ["wifi", "bluetooth", "rssi", "signal", "mapping", "scanner"] classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Topic :: System :: Networking", "Topic :: Utilities", ] dependencies = [ "flask>=3.0.0", "pyyaml>=6.0", "bleak>=0.21.0", "requests>=2.28.0", ] [project.optional-dependencies] visualization = [ "matplotlib>=3.5.0", "numpy>=1.20.0", ] dev = [ "pytest>=7.0.0", "pytest-cov>=4.0.0", "black>=23.0.0", "ruff>=0.1.0", ] all = [ "rf-mapper[visualization,dev]", ] [project.scripts] rf-mapper = "rf_mapper.__main__:main" [project.urls] Homepage = "https://github.com/user/rf-mapper" [tool.setuptools.packages.find] where = ["src"] [tool.black] line-length = 100 target-version = ["py310", "py311", "py312"] [tool.ruff] line-length = 100 target-version = "py310" [tool.ruff.lint] select = ["E", "F", "I", "W"] [tool.pytest.ini_options] testpaths = ["tests"] python_files = "test_*.py"