pluginserver 0.5.2__tar.gz → 0.5.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pluginserver-0.5.2/pluginserver.egg-info → pluginserver-0.5.5}/PKG-INFO +7 -2
- {pluginserver-0.5.2 → pluginserver-0.5.5/pluginserver.egg-info}/PKG-INFO +7 -2
- {pluginserver-0.5.2 → pluginserver-0.5.5}/setup.py +6 -2
- {pluginserver-0.5.2 → pluginserver-0.5.5}/LICENSE.txt +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/MANIFEST.in +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/README.md +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/plugincore/__init__.py +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/plugincore/baseplugin.py +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/plugincore/configfile.py +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/plugincore/cors.py +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/plugincore/pluginmanager.py +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/plugincore/pserv.py +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/pluginserver.egg-info/SOURCES.txt +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/pluginserver.egg-info/dependency_links.txt +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/pluginserver.egg-info/entry_points.txt +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/pluginserver.egg-info/requires.txt +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/pluginserver.egg-info/top_level.txt +0 -0
- {pluginserver-0.5.2 → pluginserver-0.5.5}/setup.cfg +0 -0
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pluginserver
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.5
|
|
4
4
|
Summary: Plugin-driven API server
|
|
5
5
|
Home-page: https://github.com/nicciniamh/pluginserver
|
|
6
|
-
Author:
|
|
6
|
+
Author: Nicole Stevens
|
|
7
7
|
License: MIT
|
|
8
|
+
Project-URL: Documentation, https://pluginserver.readthedocs.io
|
|
8
9
|
Classifier: Programming Language :: Python :: 3
|
|
9
10
|
Classifier: Operating System :: OS Independent
|
|
10
11
|
License-File: LICENSE.txt
|
|
@@ -12,8 +13,12 @@ Requires-Dist: aiohttp
|
|
|
12
13
|
Requires-Dist: aiohttp_cors
|
|
13
14
|
Dynamic: author
|
|
14
15
|
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
15
17
|
Dynamic: home-page
|
|
16
18
|
Dynamic: license
|
|
17
19
|
Dynamic: license-file
|
|
20
|
+
Dynamic: project-url
|
|
18
21
|
Dynamic: requires-dist
|
|
19
22
|
Dynamic: summary
|
|
23
|
+
|
|
24
|
+
A REST-like API Server built on asyncio and aiohttp, leverageing plugins for actual api management
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pluginserver
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.5
|
|
4
4
|
Summary: Plugin-driven API server
|
|
5
5
|
Home-page: https://github.com/nicciniamh/pluginserver
|
|
6
|
-
Author:
|
|
6
|
+
Author: Nicole Stevens
|
|
7
7
|
License: MIT
|
|
8
|
+
Project-URL: Documentation, https://pluginserver.readthedocs.io
|
|
8
9
|
Classifier: Programming Language :: Python :: 3
|
|
9
10
|
Classifier: Operating System :: OS Independent
|
|
10
11
|
License-File: LICENSE.txt
|
|
@@ -12,8 +13,12 @@ Requires-Dist: aiohttp
|
|
|
12
13
|
Requires-Dist: aiohttp_cors
|
|
13
14
|
Dynamic: author
|
|
14
15
|
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
15
17
|
Dynamic: home-page
|
|
16
18
|
Dynamic: license
|
|
17
19
|
Dynamic: license-file
|
|
20
|
+
Dynamic: project-url
|
|
18
21
|
Dynamic: requires-dist
|
|
19
22
|
Dynamic: summary
|
|
23
|
+
|
|
24
|
+
A REST-like API Server built on asyncio and aiohttp, leverageing plugins for actual api management
|
|
@@ -4,11 +4,12 @@ from setuptools import setup
|
|
|
4
4
|
|
|
5
5
|
setup(
|
|
6
6
|
name='pluginserver',
|
|
7
|
-
version='0.5.
|
|
7
|
+
version='0.5.5',
|
|
8
8
|
packages=['plugincore'],
|
|
9
9
|
include_package_data=True,
|
|
10
10
|
description='Plugin-driven API server',
|
|
11
|
-
|
|
11
|
+
long_description='A REST-like API Server built on asyncio and aiohttp, leverageing plugins for actual api management',
|
|
12
|
+
author='Nicole Stevens',
|
|
12
13
|
url='https://github.com/nicciniamh/pluginserver',
|
|
13
14
|
license='MIT',
|
|
14
15
|
classifiers=[
|
|
@@ -24,4 +25,7 @@ setup(
|
|
|
24
25
|
'pserve = plugincore.pserv:main',
|
|
25
26
|
],
|
|
26
27
|
},
|
|
28
|
+
project_urls={
|
|
29
|
+
'Documentation': 'https://pluginserver.readthedocs.io',
|
|
30
|
+
}
|
|
27
31
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|