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.
@@ -1,10 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pluginserver
3
- Version: 0.5.2
3
+ Version: 0.5.5
4
4
  Summary: Plugin-driven API server
5
5
  Home-page: https://github.com/nicciniamh/pluginserver
6
- Author: Your Name
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.2
3
+ Version: 0.5.5
4
4
  Summary: Plugin-driven API server
5
5
  Home-page: https://github.com/nicciniamh/pluginserver
6
- Author: Your Name
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.2',
7
+ version='0.5.5',
8
8
  packages=['plugincore'],
9
9
  include_package_data=True,
10
10
  description='Plugin-driven API server',
11
- author='Your Name',
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