Skip to content

Commit

Permalink
Cut out a new release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Apr 28, 2014
1 parent ad1f08c commit 2f4d599
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,10 @@ Similar projects
communication.
* `pyringe <https://github.com/google/pyringe>`_ - uses gdb to injects code, more reliable, but relies on `dbg` python
builds unfortunatelly.

Changelog
=========

* 0.6.1:

* Support for OS X (contributed by Saulius Menkevičius)
33 changes: 18 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# -*- encoding: utf8 -*-
from setuptools import setup, find_packages
from setuptools import setup

import os

setup(
name = "manhole",
version = "0.6.0",
url = 'https://github.com/ionelmc/python-manhole',
download_url = '',
license = 'BSD',
description = "Inpection manhole for python applications. Connection is done via unix domain sockets.",
long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author = 'Ionel Cristian Mărieș',
author_email = '[email protected]',
package_dir = {'':'src'},
py_modules = ['manhole'],
include_package_data = True,
zip_safe = False,
classifiers = [
name="manhole",
version="0.6.1",
url='https://github.com/ionelmc/python-manhole',
download_url='',
license='BSD',
description="Inpection manhole for python applications. Connection is done via unix domain sockets.",
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='Ionel Cristian Mărieș',
author_email='[email protected]',
package_dir={'': 'src'},
py_modules=['manhole'],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
Expand All @@ -31,6 +31,9 @@
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
Expand Down

0 comments on commit 2f4d599

Please sign in to comment.