forked from linkedin/qark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 1023 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
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name = "qark",
version = "1.2.20",
packages = ['qark/modules','qark/lib', 'qark'],
include_package_data = True,
# scripts = ['qark.py'],
install_requires = required,
package_data = {
# If any package contains *.txt or *.rst files, include them:
'./': ['*.py'],
# And include any *.msg files found in the 'hello' package, too:
#'hello': ['*.msg'],
},
# metadata for upload to PyPI
author = "Tushar Dalvi & Tony Trummer",
author_email = "[email protected], [email protected]",
description = "Android static code analyzer",
license = "Apache 2.0",
keywords = "android security qark exploit",
url = "https://www.github.com/linkedin/qark",
)