-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
72 lines (69 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# Instruction:
# - Dev
# - python setup.py develop --user
# - (test)
# - python setup.py develop --user -u
#
# - PyPI
# - python setup.py register -r https://pypi.python.org/pypi
#
# - python setup.py sdist bdist_wheel
# - pip install --user dist/mallet_lldb*
# - (test)
# - pip uninstall mallet-lldb
#
# - twine upload dist/*
# - pip install --user mallet-lldb
# - (test)
# - pip uninstall mallet-lldb
#
# - Test PyPI
# - python setup.py register -r https://testpypi.python.org/pypi
#
# - python setup.py sdist bdist_wheel
# - pip install --user dist/mallet_lldb*
# - (test)
# - pip uninstall mallet-lldb
#
# - twine upload -r pypitest dist/*
# - pip install -i https://testpypi.python.org/pypi --user mallet-lldb
# - (test)
# - pip uninstall mallet-lldb
setup(name="mallet-lldb",
version="1.0a2",
description="LLDB additions for iOS project.",
url="https://github.com/bartoszj/Mallet",
author="Bartosz Janda",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Debuggers"
],
keywords="LLDB debugger development iOS summary",
packages=find_packages(),
install_requires=["PyYAML"],
extras_require={
"dev": ["tabulate"]
},
package_data={
"mallet": ["config.yml"],
"mallet.AFNetworking": ["config.yml", "lldbinit"],
"mallet.CFNetwork": ["config.yml", "lldbinit", "class_dumps/*.json"],
"mallet.common": ["config.yml", "lldbinit"],
"mallet.CoreGraphics": ["config.yml", "lldbinit"],
"mallet.debug_commands": ["config.yml", "lldbinit"],
"mallet.Foundation": ["config.yml", "lldbinit", "class_dumps/*.json"],
"mallet.QuartzCore": ["config.yml", "lldbinit", "class_dumps/*.json"],
"mallet.StoreKit": ["config.yml", "lldbinit", "class_dumps/*.json"],
"mallet.UIKit": ["config.yml", "lldbinit", "class_dumps/*.json"],
})