forked from gotcha/ipdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (53 loc) · 1.95 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
# Copyright (c) 2007, 2010, 2011, 2012 Godefroid Chapelle
#
# This file is part of ipdb.
# GNU package is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 2 of the License, or (at your option)
# any later version.
#
# GNU package is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
from setuptools import setup, find_packages
from sys import version_info
version = '0.7.1dev'
long_description = (open('README.rst').read() +
'\n\n' + open('HISTORY.txt').read())
if version_info.major == 2:
console_script = 'ipdb'
else:
console_script = 'ipdb%d' % version_info.major
setup(name='ipdb',
version=version,
description="IPython-enabled pdb",
long_description=long_description,
classifiers=[
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Topic :: Software Development :: Debuggers',
],
keywords='pdb ipython',
author='Godefroid Chapelle',
author_email='gotcha@bubblenet.be',
url='https://github.com/gotcha/ipdb',
license='GPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
test_suite='tests',
install_requires=[
'ipython >= 0.10',
],
entry_points={
'console_scripts': ['%s = ipdb.__main__:main' % console_script]
},
use_2to3=True,
)