-
-
Notifications
You must be signed in to change notification settings - Fork 211
/
setup.py
45 lines (37 loc) · 1.33 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
from pathlib import Path
from setuptools import setup, find_packages
here = Path(__file__).resolve().parent
with open((here / "README.md"), encoding="utf-8") as f:
readme = f.read()
with open((here / "permasigner" / "__version__.py"), encoding="utf-8") as f:
version = f.read()
version = version.split('=')[-1].strip().strip('"')
with open((here / "requirements.txt"), encoding="utf-8") as f:
requires = f.readlines()
setup(
name='permasigner',
version=version,
description='Permanently signs IPAs on jailbroken iDevices (persists on stock).',
license='BSD-3-Clause',
url='https://github.com/permasigner/permasigner',
python_requires=">=3.7",
packages=find_packages(),
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
'Natural Language :: English',
'Environment :: Console',
'Operating System :: OS Independent',
],
entry_points={
'console_scripts': [
'permasigner = permasigner.__main__:main',
],
},
keywords='python, windows, macos, linux, docker, cli, open-source, ios, command-line-app, cli-app, hacktoberfest, procursus, permasign, permasigner',
include_package_data=True,
author='Nebula',
install_requires=requires,
author_email='me@itsnebula.net',
zip_safe=True,
)