-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
39 lines (35 loc) · 1.22 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
from __future__ import print_function
import sys
import os.path
from setuptools import setup, find_packages
single_version = '--single-version-externally-managed'
if single_version in sys.argv:
print('[pdb++] WARNING: ignoring unsupported option', single_version, file=sys.stderr)
sys.argv.remove(single_version)
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
long_description = open(readme).read()
setup(
name='pdbpp',
version='0.7.2',
author='Antonio Cuni',
author_email='anto.cuni@gmail.com',
py_modules=['pdb'],
url='http://bitbucket.org/antocuni/pdb',
license='BSD',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
description='pdb++, a drop-in replacement for pdb',
long_description=long_description,
keywords='pdb debugger tab color completion',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Topic :: Utilities",
],
install_requires=["fancycompleter>=0.2",
"wmctrl",
"pygments"],
)