-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
61 lines (56 loc) · 1.85 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
import re
from pathlib import Path
from setuptools import find_packages, setup
here = Path(__file__).parent
long_description = (here / "README.md").read_text("utf8")
VERSION = re.search(
r'__version__ = "(.+?)"',
(here / "android_unpinner" / "__init__.py").read_text("utf8"),
).group(1)
setup(
name="android-unpinner",
author="Maximilian Hils",
author_email="[email protected]",
version=VERSION,
description="Android Certificate Pinning Unpinner",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mitmproxy/android-unpinner",
project_urls={
"Source": "https://github.com/mitmproxy/android-unpinner",
"Documentation": "https://github.com/mitmproxy/android-unpinner",
"Issues": "https://github.com/mitmproxy/android-unpinner/issues",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Topic :: Security",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: Proxy Servers",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Software Development :: Testing",
"Typing :: Typed",
],
packages=find_packages(
include=[
"android_unpinner",
"android_unpinner.*",
]
),
include_package_data=True,
entry_points={
"console_scripts": [
"android-unpinner = android_unpinner.__main__:cli",
"aup = android_unpinner.__main__:cli",
]
},
python_requires=">=3.10",
install_requires=[
"rich_click",
],
)