summaryrefslogtreecommitdiff
path: root/dummy/setup.py
blob: 0f1e6e72c4934a44b8331ab952c2e082e5837f8c (plain)
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
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',
      ],
)