-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (30 loc) · 924 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
setup(
long_description=open("README.md", "r").read(),
name="pwnpy",
version="1.53",
description="wardriving tool",
author="Pascal Eberlein",
author_email="[email protected]",
url="https://github.com/nbdy/pwnpy",
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License'
],
keywords="wardriving tool raspberry pi",
packages=find_packages(),
install_requires=[
"gpsd-py3", "loguru", "btpy", "spidev", "Pillow", "dataset", "pyrunnable", "pyclsload", "scapy", "folium",
"flask", "onboot"
],
entry_points={
'console_scripts': [
'pwnpy = pwnpy.__main__:main'
]
},
package_data={
"pwnpy": ["modules/*"]
},
long_description_content_type="text/markdown",
)