Metadata-Version: 2.1
Name: arm-converter
Version: 0.1.0
Summary: Convert ARM instructions to machine code
Author-email: Yiheng Quan <development.henryquan@gmail.com>
Project-URL: Homepage, https://github.com/HenryQuan/ARM-Converter
Keywords: arm,converter,ios
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# ARM Converter
A local ARM converter for iOS Reverse Engineering. Download the toolchains [here](https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads). Currently, `as` and `objdump` are required for the script to work.

## Building
- Run `python -m build` to build the package
- Install with `pip install --force-reinstall arm_converter --find-links=dist`

## Publishing
- Check with `twine check dist/*`
- Upload to TestPyPI before publishing it `twine upload -r testpypi dist/*`
  - Install with `pip install arm_converter -i https://testpypi.python.org/pypi`
- Publish it with `twine upload dist/*`
