2009-06-09 07:37:13 +04:00
#!/usr/bin/env python
2011-07-28 02:46:49 +04:00
from distribute_setup import use_setuptools
2009-06-09 07:37:13 +04:00
use_setuptools ( )
from setuptools import setup
2009-06-10 16:10:29 +04:00
from pudb import VERSION
2009-06-09 07:37:13 +04:00
2011-07-29 19:19:59 +04:00
try :
readme = open ( " README.rst " )
long_description = str ( readme . read ( ) )
finally :
readme . close ( )
2009-06-09 07:37:13 +04:00
setup ( name = ' pudb ' ,
2009-06-10 16:10:29 +04:00
version = VERSION ,
2009-06-23 07:35:01 +04:00
description = ' A full-screen, console-based Python debugger ' ,
2011-07-29 19:19:59 +04:00
long_description = long_description ,
2009-06-09 07:37:13 +04:00
author = ' Andreas Kloeckner ' ,
author_email = ' inform@tiker.net ' ,
2009-06-09 09:42:23 +04:00
install_requires = [
2011-02-14 18:04:44 +03:00
" urwid>=0.9.9.1 " ,
2009-06-09 07:50:23 +04:00
" pygments>=1.0 " ,
2009-06-09 07:37:13 +04:00
] ,
url = ' http://pypi.python.org/pypi/pudb ' ,
2009-06-09 08:59:13 +04:00
classifiers = [
" Development Status :: 4 - Beta " ,
" Environment :: Console " ,
" Environment :: Console :: Curses " ,
" Intended Audience :: Developers " ,
" License :: OSI Approved :: MIT License " ,
" Natural Language :: English " ,
" Operating System :: POSIX " ,
" Operating System :: Unix " ,
" Programming Language :: Python " ,
" Programming Language :: Python :: 2 " ,
" Topic :: Software Development " ,
" Topic :: Software Development :: Debuggers " ,
" Topic :: Software Development :: Quality Assurance " ,
" Topic :: System :: Recovery Tools " ,
" Topic :: System :: Software Distribution " ,
" Topic :: Terminals " ,
" Topic :: Utilities " ,
] ,
2009-06-10 16:10:29 +04:00
packages = [ " pudb " ] )
2009-06-09 07:37:13 +04:00