mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-19 20:03:16 +00:00
Remove TRANSITIONAL package support
This commit is contained in:
parent
a05fc5e7c5
commit
aab29ff277
1 changed files with 1 additions and 11 deletions
12
setup.py
12
setup.py
|
@ -14,10 +14,6 @@ PYPY = hasattr(sys, "pypy_version_info")
|
|||
PY2 = sys.version_info[0] == 2
|
||||
|
||||
|
||||
# for building transitional package.
|
||||
TRANSITIONAL = False
|
||||
|
||||
|
||||
class NoCython(Exception):
|
||||
pass
|
||||
|
||||
|
@ -110,14 +106,8 @@ with io.open("README.md", encoding="utf-8") as f:
|
|||
long_desc = f.read()
|
||||
del f
|
||||
|
||||
name = "msgpack"
|
||||
|
||||
if TRANSITIONAL:
|
||||
name = "msgpack-python"
|
||||
long_desc = "This package is deprecated. Install msgpack instead."
|
||||
|
||||
setup(
|
||||
name=name,
|
||||
name="msgpack",
|
||||
author="Inada Naoki",
|
||||
author_email="songofacandy@gmail.com",
|
||||
version=version_str,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue