|
| 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