2023-12-14 12:34:14 +01:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools"]
|
2023-12-14 12:35:21 +01:00
|
|
|
build-backend = "setuptools.build_meta"
|
2023-12-14 12:34:14 +01:00
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "pwnagotchi"
|
|
|
|
dynamic = ["version"]
|
|
|
|
dependencies = [
|
|
|
|
"OPi.GPIO; platform_release==\"6.1.31-sun50iw9\"",
|
|
|
|
"Pillow",
|
|
|
|
"PyYAML",
|
|
|
|
"RPi.GPIO; platform_release!=\"6.1.31-sun50iw9\"",
|
|
|
|
"file-read-backwards",
|
|
|
|
"flask",
|
|
|
|
"flask-cors",
|
|
|
|
"flask-wtf",
|
|
|
|
"gast",
|
|
|
|
"gym",
|
|
|
|
"inky",
|
|
|
|
"pycryptodome",
|
|
|
|
"pydrive2",
|
|
|
|
"python-dateutil",
|
|
|
|
"requests",
|
|
|
|
"rpi_hardware_pwm; platform_release!=\"6.1.31-sun50iw9\"",
|
|
|
|
"scapy",
|
|
|
|
"shimmy; platform_machine!=\"armv6l\"",
|
|
|
|
"smbus2",
|
|
|
|
"spidev",
|
|
|
|
"toml",
|
|
|
|
"tweepy",
|
|
|
|
"websockets"
|
|
|
|
]
|
|
|
|
requires-python = ">=3.9"
|
|
|
|
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',
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://pwnagotchi.ai/"
|
|
|
|
Documentation = "https://pwnagotchi.ai/"
|
2024-01-05 10:36:34 +01:00
|
|
|
Repository = "https://github.com/jayofelony/pwnagotchi-bookworm.git"
|
|
|
|
"Bug Tracker" = "https://github.com/jayofelony/pwnagotchi-bookworm.git/issues"
|
2023-12-14 12:34:14 +01:00
|
|
|
|
|
|
|
[project.scripts]
|
2023-12-14 12:38:57 +01:00
|
|
|
pwnagotchi_cli = "bin.pwnagotchi:pwnagotchi_cli"
|