forked from sauce-archives/isign
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
49 lines (43 loc) · 1.35 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
'''
Some Py file
'''
from os import path
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
__version__ = "0.10.20"
PACKAGE_NAME = "ak_isign"
setup(
name=PACKAGE_NAME,
version=__version__,
description='Re-signing iOS apps without Apple tools',
url='https://github.com/saucelabs/{}'.format(PACKAGE_NAME),
download_url='https://github.com/saucelabs/{}/tarball/v{}'.format(
PACKAGE_NAME, __version__),
author='Sauce Labs',
author_email='dev@saucelabs.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
keywords=['ios', 'app', 'signature', 'codesign', 'sign', 'resign'],
packages=find_packages(),
install_requires=[
# 'biplist==0.9',
'ak-construct==2.5.2',
'memoizer==0.0.1',
'pyOpenSSL==24.1.0',
'biplist==1.0.3'
],
package_data={
'isign': ['apple_credentials/applecerts.pem',
'code_resources_template.xml',
'version.json'],
},
scripts=['bin/isign',
'bin/multisign',
'bin/isign_export_creds.sh',
'bin/isign_guess_mobileprovision.sh']
)