|
1 | 1 | # -*- encoding: utf8 -*- |
2 | | -from setuptools import setup, find_packages |
| 2 | +from setuptools import setup |
3 | 3 |
|
4 | 4 | import os |
5 | 5 |
|
6 | 6 | setup( |
7 | | - name = "manhole", |
8 | | - version = "0.6.0", |
9 | | - url = 'https://github.com/ionelmc/python-manhole', |
10 | | - download_url = '', |
11 | | - license = 'BSD', |
12 | | - description = "Inpection manhole for python applications. Connection is done via unix domain sockets.", |
13 | | - long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(), |
14 | | - author = 'Ionel Cristian Mărieș', |
15 | | - author_email = 'contact@ionelmc.ro', |
16 | | - package_dir = {'':'src'}, |
17 | | - py_modules = ['manhole'], |
18 | | - include_package_data = True, |
19 | | - zip_safe = False, |
20 | | - classifiers = [ |
| 7 | + name="manhole", |
| 8 | + version="0.6.1", |
| 9 | + url='https://github.com/ionelmc/python-manhole', |
| 10 | + download_url='', |
| 11 | + license='BSD', |
| 12 | + description="Inpection manhole for python applications. Connection is done via unix domain sockets.", |
| 13 | + long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(), |
| 14 | + author='Ionel Cristian Mărieș', |
| 15 | + author_email='contact@ionelmc.ro', |
| 16 | + package_dir={'': 'src'}, |
| 17 | + py_modules=['manhole'], |
| 18 | + include_package_data=True, |
| 19 | + zip_safe=False, |
| 20 | + classifiers=[ |
21 | 21 | 'Development Status :: 5 - Production/Stable', |
22 | 22 | 'Intended Audience :: Developers', |
23 | 23 | 'License :: OSI Approved :: BSD License', |
|
31 | 31 | 'Programming Language :: Python :: 2.6', |
32 | 32 | 'Programming Language :: Python :: 2.7', |
33 | 33 | 'Programming Language :: Python :: 3', |
| 34 | + 'Programming Language :: Python :: 3.2', |
| 35 | + 'Programming Language :: Python :: 3.3', |
| 36 | + 'Programming Language :: Python :: 3.4', |
34 | 37 | 'Programming Language :: Python :: Implementation :: CPython', |
35 | 38 | 'Programming Language :: Python :: Implementation :: PyPy', |
36 | 39 | ], |
|
0 commit comments