-
Notifications
You must be signed in to change notification settings - Fork 75
/
setup.py
executable file
·53 lines (49 loc) · 1.6 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
#!/usr/bin/env python
# -*- encoding: utf8 -*-
#
# Copyright (c) 2016-2018 ESET
# Author: Marc-Etienne M.Léveillé <[email protected]>
# See LICENSE file for redistribution.
from setuptools import setup
long_description = \
"""
IPyIDA
======
IPyIDA is a python-only solution to add an IPython console to IDA Pro. Use
`<Shift-.>` to open a window with an embedded _Qt console_. You can then
benefit from IPython's autocompletion, online help, monospaced font input
field, graphs, and so on.
See full README on GitHub: <https://www.github.com/eset/ipyida>.
"""
setup(name='ipyida',
version='2.1',
description='IDA plugin to embed the IPython console inside IDA',
long_description=long_description,
long_description_content_type="text/markdown",
author='Marc-Etienne M.Léveillé',
author_email='[email protected]',
url='https://www.github.com/eset/ipyida',
packages=['ipyida'],
install_requires=[
'ipykernel>=4.6',
'ipykernel>=5.1.4; python_version >= "3.8" and platform_system=="Windows"',
'qtconsole>=4.3',
'qasync; python_version >= "3"',
'jupyter-client<6.1.13',
'nbformat',
],
extras_require={
"notebook": [
"notebook<7",
"jupyter-kernel-proxy",
]
},
license="BSD",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
)