forked from hydra-dbg/python-gdb-mi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (51 loc) · 2.02 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
# https://packaging.python.org/en/latest/distributing.html
# https://github.com/pypa/sampleproject
from setuptools import setup, find_packages
from codecs import open
from os import path, system
import sys, re
here = path.abspath(path.dirname(__file__))
try:
system('''pandoc -f markdown-raw_html -o '%(dest_rst)s' '%(src_md)s' ''' % {
'dest_rst': path.join(here, 'README.rst'),
'src_md': path.join(here, 'README.md'),
})
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# strip out any HTML comment|tag
long_description = re.sub(r'<!--.*?-->', '', long_description,
flags=re.DOTALL|re.MULTILINE)
long_description = re.sub(r'<img.*?src=.*?>', '', long_description,
flags=re.DOTALL|re.MULTILINE)
with open(path.join(here, 'README.rst'), 'w', encoding='utf-8') as f:
f.write(long_description)
except:
print("Generation of the documentation failed. " + \
"Do you have 'pandoc' installed?")
long_description = __doc__
# load __version__, __doc__, _author, _license and _url
exec(open(path.join(here, 'gdb_mi.py')).read())
setup(
name='python-gdb-mi',
version=__version__,
description=__doc__,
long_description=long_description,
url=_url,
# Author details
author=_author,
author_email='[email protected]',
license=_license,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Debuggers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3'
],
python_requires='>=3.5',
install_requires=install_deps,
keywords='debugger gdb',
packages=['gdb_mi'],
data_files=[("", ["LICENSE"])]
)