-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 1.11 KB
/
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
import os
from setuptools import setup
def long_description():
path = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(path) as f:
return f.read()
setup(name='cw_msgpack_coder',
version='1.1.6',
description='Simple and fast Python any object serialization with use msgpack.',
long_description=long_description(),
author='Cezary K. Wagner',
author_email='[email protected]',
url='https://github.com/ChameleonRed/cw_msgpack_coder',
license='MIT',
packages=['cw_msgpack_coder'],
install_requires='u-msgpack-python',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'],
keywords="msgpack serialization streaming object encoding decoding",
test_suite="tests.test_umsgpack_coder")