[project] name = "neotalk" version = "0.2.0" description = "A modern, encrypted, peer-to-peer chat over IP with a graphical interface." readme = "README.md" requires-python = ">=3.11" license = "GPL-3.0-or-later" license-files = ["LICENSE"] authors = [{ name = "Andros Fenollosa" }] keywords = ["chat", "p2p", "talk", "tcp", "udp", "encryption", "tkinter"] classifiers = [ "Development Status :: 4 - Beta", "Environment :: MacOS X", "Environment :: Win32 (MS Windows)", "Intended Audience :: End Users/Desktop", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Topic :: Communications :: Chat", ] dependencies = [ "cryptography>=42.0", ] [project.scripts] neotalk = "neotalk.__main__:main" [project.urls] Homepage = "https://git.andros.dev/andros/neotalk" Repository = "https://git.andros.dev/andros/neotalk" Issues = "https://git.andros.dev/andros/neotalk/issues" [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-cov>=5.0", "ruff>=0.6", "pre-commit>=3.7", ] build = [ "pyinstaller>=6.0", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/neotalk"] [tool.ruff] line-length = 88 target-version = "py311" src = ["src", "tests"] [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM", "C4"] [tool.pytest.ini_options] testpaths = ["tests"] addopts = "-q"