pudb/setup.py

48 lines
1.4 KiB
Python
Raw Normal View History

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
from pudb import VERSION
2009-06-09 07:37:13 +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',
version=VERSION,
2009-06-23 07:35:01 +04:00
description='A full-screen, console-based Python debugger',
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=[
"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",
],
packages=["pudb"])
2009-06-09 07:37:13 +04:00