-
Notifications
You must be signed in to change notification settings - Fork 189
/
setup.py
63 lines (55 loc) · 2.16 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# pylint: disable=C0103, C0111, C0326, W0122
from setuptools import setup
with open('requirements.txt', 'r') as f:
requirements = f.read().splitlines()
def get_version():
version = {}
with open("trackerjacker/version.py") as fp:
exec(fp.read(), version)
return version['__version__']
def get_readme():
try:
import pypandoc
readme_data = pypandoc.convert_file('README.md', 'rst')
except(IOError, ImportError):
readme_data = open('README.md').read()
return readme_data
setup(
name = 'trackerjacker',
packages = ['trackerjacker', 'trackerjacker/plugins'],
url = 'https://github.com/calebmadrigal/trackerjacker',
version = get_version(),
description = 'Finds and tracks wifi devices through raw 802.11 monitoring',
long_description_content_type='text/x-rst',
long_description = get_readme(),
author = 'Caleb Madrigal',
author_email = 'caleb.madrigal@gmail.com',
license = 'MIT',
keywords = ['hacking', 'network', 'wireless', 'packets', 'scapy'],
install_requires = requirements,
tests_require = requirements,
test_suite='tests',
entry_points={'console_scripts': ['trackerjacker = trackerjacker.__main__:main']},
include_package_data = True,
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: System :: Networking',
'Topic :: System :: Networking :: Monitoring',
'Topic :: Security',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS'
],
)