-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (33 loc) · 1.11 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
from setuptools import setup, find_packages
def parse_requirements(file):
required = []
with open(file) as f:
for req in f.read().splitlines():
if not req.strip().startswith('#'):
required.append(req)
return required
requirements = parse_requirements('requirements.txt')
long_description = "ADBBrute allows bruteforcing Android LockScreen"
setup(
name="ADBBrute",
version="0.1",
description="Android LockScreen Bruteforce",
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS'
'Topic :: Utilities',
'Topic :: Security',
],
packages=find_packages(),
install_requires=requirements,
python_requires='>3.6',
scripts=['ADBBrute.py'],
)