-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
|
@@ -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', | ||
], | ||
|