Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
python-pluginbase
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Python Team
packages
python-pluginbase
Commits
97688e00
Commit
97688e00
authored
6 years ago
by
Samuel Henrique
Browse files
Options
Downloads
Patches
Plain Diff
New upstream version 1.0.0
parent
ef976cf4
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
PKG-INFO
+2
-1
2 additions, 1 deletion
PKG-INFO
pluginbase.egg-info/PKG-INFO
+2
-1
2 additions, 1 deletion
pluginbase.egg-info/PKG-INFO
pluginbase.py
+5
-5
5 additions, 5 deletions
pluginbase.py
setup.py
+2
-1
2 additions, 1 deletion
setup.py
with
11 additions
and
8 deletions
PKG-INFO
+
2
−
1
View file @
97688e00
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
...
...
This diff is collapsed.
Click to expand it.
pluginbase.egg-info/PKG-INFO
+
2
−
1
View file @
97688e00
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
...
...
This diff is collapsed.
Click to expand it.
pluginbase.py
+
5
−
5
View file @
97688e00
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
1
View file @
97688e00
...
...
@@ -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
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment