Skip to content
Snippets Groups Projects
Commit 97688e00 authored by Samuel Henrique's avatar Samuel Henrique
Browse files

New upstream version 1.0.0

parent ef976cf4
No related branches found
No related tags found
No related merge requests found
Metadata-Version: 2.1
Name: pluginbase
Version: 0.7
Version: 1.0.0
Summary: PluginBase is a module for Python that enables the development of flexible plugin systems in Python.
Home-page: http://github.com/mitsuhiko/pluginbase
Author: Armin Ronacher
......@@ -48,6 +48,7 @@ Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
......
Metadata-Version: 2.1
Name: pluginbase
Version: 0.7
Version: 1.0.0
Summary: PluginBase is a module for Python that enables the development of flexible plugin systems in Python.
Home-page: http://github.com/mitsuhiko/pluginbase
Author: Armin Ronacher
......@@ -48,6 +48,7 @@ Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
......
......@@ -32,7 +32,7 @@ else:
from io import BytesIO as NativeBytesIO
__version__ = '0.7'
__version__ = '1.0.0'
_local = threading.local()
_internalspace = ModuleType(__name__ + '._internalspace')
......@@ -92,13 +92,13 @@ def get_searchpath(path, depth=float('inf'), followlinks=False):
# slow execution when *path* is a large tree and *depth* is a small number
paths = [path]
for dir_entry in os.listdir(path):
path = os.path.join(path, dir_entry)
if not os.path.isdir(path):
sub_path = os.path.join(path, dir_entry)
if not os.path.isdir(sub_path):
continue
if not followlinks and os.path.islink(path):
if not followlinks and os.path.islink(sub_path):
continue
if depth:
paths.extend(get_searchpath(path, depth - 1, followlinks))
paths.extend(get_searchpath(sub_path, depth - 1, followlinks))
return paths
......
......@@ -19,7 +19,7 @@ setup(
author_email='armin.ronacher@active-4.com',
maintainer='Spencer McIntyre',
maintainer_email='zeroSteiner@gmail.com',
version='0.7',
version='1.0.0',
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
......@@ -36,6 +36,7 @@ setup(
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Environment :: Plugins',
'Intended Audience :: Developers',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment