-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 700 Bytes
/
setup.py
File metadata and controls
18 lines (17 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
setup(
name = 'zerojack',
version = '0.1.0',
author = 'b1narygl1tch',
description = 'ZeroJack is a port of MouseJack for Raspberry Pi with SPI-connected NRF24L01 module.',
url='https://github.com/b1narygl1tch/zerojack',
license = 'BSD 3-Clause License',
keywords = 'mousejack mousejack-attack nrf24 raspberry-pi zerojack keystroke-injection',
py_modules=['main'],
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': ['zerojack=main:cli']
},
install_requires=['spidev', 'RPi.GPIO', 'click', 'tabulate']
)