-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (72 loc) · 2.39 KB
/
setup.py
File metadata and controls
81 lines (72 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import os
from importlib.machinery import SourceFileLoader
from setuptools import find_packages, setup
module = SourceFileLoader(
"version", os.path.join("rpcgrid", "version.py")
).load_module()
setup(
name='rpcgrid',
version=module.__version__,
author=module.__author__,
author_email=module.team_email,
license=module.package_license,
description=module.package_info,
long_description='''
# RPCGrid (development)
Remote procedure call package for any protocol and any transport layer.
## Features
+ async/await support
+ logging remote procedure call
+ server/client side remote procedure call
+ custom transport and protocols
+ block/non-block call
+ parallel rpc calls in async mode
#### Protocol
+ JsonRPC protocol support
#### Transport
+ Single/Multithreading remote procedure call
+ UDP/TCP socket remote procedure call
+ RabbitMQ remote procedure call''',
keywords='rpc microservice server rpcgrid '
'async asyncio aio jsonrpc'
'rabbit rabbitmq service'
'remote procedure call',
platforms="all",
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Microsoft',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
],
project_urls={
'Documentation': 'https://github.com/urands/rpcgrid/',
'Source': 'https://github.com/urands/rpcgrid/',
'Tracker': 'https://github.com/urands/rpcgrid/issues/',
},
packages=find_packages(exclude=['tests']),
package_data={'rpcgrid': ['py.typed']},
install_requires=['aio-pika>=6.0'],
python_requires=">3.5.*, <4",
extras_require={
'develop': [
'pytest',
'sphinx',
'flake8',
'isort',
'black',
'sphinx-autobuild',
]
},
)