mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 09:50:01 +00:00
Add transition package
This commit is contained in:
parent
d720c42468
commit
9f4c12f29c
2 changed files with 33 additions and 0 deletions
2
dummy/README
Normal file
2
dummy/README
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
This is dummy transition package for msgpak.
|
||||
Install msgpack instead of msgpack-python.
|
||||
31
dummy/setup.py
Normal file
31
dummy/setup.py
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
from setuptools import setup, Extension
|
||||
|
||||
long_desc = """\
|
||||
msgpack-python is renamed to just msgpack.
|
||||
|
||||
Install msgpack by ``pip install msgpack``.
|
||||
"""
|
||||
|
||||
|
||||
setup(name='msgpack-python',
|
||||
author='INADA Naoki',
|
||||
author_email='songofacandy@gmail.com',
|
||||
version="0.5.0",
|
||||
description="Transition package for msgpack",
|
||||
long_description=long_desc,
|
||||
install_requires=["msgpack>=0.5"],
|
||||
url='http://msgpack.org/',
|
||||
license='Apache 2.0',
|
||||
classifiers=[
|
||||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: Implementation :: CPython',
|
||||
'Programming Language :: Python :: Implementation :: PyPy',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: Apache Software License',
|
||||
],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue