Metadata-Version: 2.1
Name: ipa-deploy
Version: 2.0.0
Summary: install IPA package to iOS device with command line
Home-page: https://github.com/floatinghotpot/ipa-deploy
Download-URL: https://github.com/floatinghotpot/ipa-deploy
Author: Liming Xie
Author-email: liming.xie@gmail.com
License: GPLv3+
Keywords: ios,installer
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown


Command line tool to deploy IPA package to iOS device.

It was written with nodejs before, now it's re-written with python3.

## Installation

Please make sure your Python is v3.7 or above.

```bash
python3 --version
python3 -m pip install ipa-deploy
```

Or, clone from GitHub:
```bash
git clone https://github.com/floatinghotpot/ipa-deploy.git
cd ipa-deploy
python3 -m pip install -e .
```

# How To Use #

```bash
ipa-deploy <path_to_ipa_file>
```

Example:
```bash
ipa-deploy myapp.ipa
```

# How It Works #

Here are the steps that the tool actualy runs:

```bash
# unzip the IPA file to tmp folder
mkdir ./tmp
cd ./tmp
unzip <path_to_ipa_file>

# run ios-deploy to install the app into iOS device
ios-deploy -b ./Payload/*.app

# clean up the tmp folder
cd ..
rm -r ./tmp
```

# Credits #

A simple tool created by Raymond Xie, to install IPA package with command line.

Any comments are welcome.
