Files
pwnagotchi/pyproject.toml

67 lines
1.6 KiB
TOML
Raw Normal View History

[build-system]
2024-12-01 12:59:56 +01:00
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pwnagotchi"
dynamic = ["version"]
dependencies = [
"PyYAML",
"dbus-python",
"file-read-backwards",
"flask",
"flask-cors",
"flask-wtf",
"gast",
"gpiozero",
"inky",
"numpy",
"pycryptodome",
"pydrive2",
"python-dateutil",
"requests",
"rpi-lgpio",
"rpi_hardware_pwm",
"scapy",
"setuptools",
"shimmy",
"smbus",
"smbus2",
"spidev",
"toml",
"tweepy",
"websockets",
]
2024-12-01 12:59:56 +01:00
requires-python = ">=3.11"
authors = [
{name = "Evilsocket", email = "evilsocket@gmail.com"},
{name = "Jayofelony", email = "oudshoorn.jeroen@gmail.com"}
]
maintainers = [
{name = "Jayofelony", email = "oudshoorn.jeroen@gmail.com"}
]
description = "(⌐■_■) - Deep Reinforcement Learning instrumenting bettercap for WiFI pwning."
readme = "README.md"
license = {file = "LICENSE.md"}
classifiers = [
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Environment :: Console',
]
2024-12-01 15:54:16 +01:00
[tool.setuptools.dynamic]
version = {attr = "pwnagotchi.__version__"}
[project.urls]
Homepage = "https://pwnagotchi.org/"
Documentation = "https://github.com/jayofelony/pwnagotchi/wiki"
Repository = "https://github.com/jayofelony/pwnagotchi.git"
GitHub = "https://github.com/jayofelony/pwnagotchi"
Issues = "https://github.com/jayofelony/pwnagotchi/issues"
Download = "https://github.com/jayofelony/pwnagotchi/releases/latest"
[project.scripts]
2024-12-01 12:59:56 +01:00
pwnagotchi = "bin.pwnagotchi:pwnagotchi_cli"