Files
pwnagotchi/pyproject.toml

62 lines
1.7 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 = [
"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",
2024-01-05 14:17:51 +01:00
"stable_baselines3; platform_machine!=\"armv6l\"",
"stable_baselines3==1.8.0; platform_machine==\"armv6l\"",
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"