10000 Add transition package · msgpack/msgpack-python@9f4c12f · GitHub
[go: up one dir, main page]

Skip to content

Commit 9f4c12f

Browse files
committed
Add transition package
1 parent d720c42 commit 9f4c12f

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

dummy/README

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
This is dummy transition package for msgpak.
2+
Install msgpack instead of msgpack-python.

dummy/setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
from setuptools import setup, Extension
2+
3+
long_desc = """\
4+
msgpack-python is renamed to just msgpack.
5+
6+
Install msgpack by ``pip install msgpack``.
7+
"""
8+
9+
10+
setup(name='msgpack-python',
11+
author='INADA Naoki',
12+
author_email='songofacandy@gmail.com',
13+
version="0.5.0",
14+
description="Transition package for msgpack",
15+
long_description=long_desc,
16+
install_requires=["msgpack>=0.5"],
17+
url='http://msgpack.org/',
18+
license='Apache 2.0',
19+
classifiers=[
20+
'Programming Language :: Python :: 2',
21+
'Programming Language :: Python :: 2.7',
22+
'Programming Language :: Python :: 3',
23+
'Programming Language :: Python :: 3.5',
24+
'Programming Language :: Python :: 3.6',
25+
'Programming Language :: Python :: 3.7',
26+
'Programming Language :: Python :: Implementation :: CPython',
27+
'Programming Language :: Python :: Implementation :: PyPy',
28+
'Intended Audience :: Developers',
29+
'License :: OSI Approved :: Apache Software License',
30+
],
31+
)

0 commit comments

Comments
 (0)
0