Files
pwnagotchi/pyproject.toml

60 lines
1.5 KiB
TOML
Raw Normal View History

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 = [
"Pillow",
"PyYAML",
2024-01-05 14:43:52 +01:00
"RPi.GPIO",
2023-12-14 12:34:14 +01:00
"file-read-backwards",
"flask",
"flask-cors",
"flask-wtf",
"gast",
"gym",
"inky",
"pycryptodome",
"pydrive2",
"python-dateutil",
"requests",
2024-01-05 14:43:52 +01:00
"rpi_hardware_pwm",
2023-12-14 12:34:14 +01:00
"scapy",
2024-01-05 14:43:52 +01:00
"shimmy",
2023-12-14 12:34:14 +01:00
"smbus2",
"spidev",
2024-01-05 14:43:52 +01:00
"stable_baselines3",
2023-12-14 12:34:14 +01:00
"toml",
2024-01-05 14:17:51 +01:00
"torch==2.0.1",
"torchvision==0.15.2",
2023-12-14 12:34:14 +01:00
"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"