-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathsetup.py
executable file
·31 lines (27 loc) · 1008 Bytes
/
setup.py
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
#!/usr/bin/env python
# coding: utf-8
# Define __version__ without importing msgpackrpc.
# This allows building sdist without installing any 3rd party packages.
exec(open('msgpackrpc/_version.py').read())
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='msgpack-rpc-python',
version=__version__,
author='Masahiro Nakagawa',
author_email='repeatedly@gmail.com',
url="https://github.com/msgpack-rpc/msgpack-rpc-python",
description="MessagePack RPC",
long_description="""\
MessagePack RPC for Python.
This implementation uses Tornado framework as a backend.
""",
packages=['msgpackrpc', 'msgpackrpc/transport'],
install_requires=['msgpack-python', 'tornado >= 3,<5'],
license="Apache Software License",
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License'],
)