mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-20 12:23: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
|
PY2 = sys.version_info[0] == 2
|
||||||
|
|
||||||
|
|
||||||
# for building transitional package.
|
|
||||||
TRANSITIONAL = False
|
|
||||||
|
|
||||||
|
|
||||||
class NoCython(Exception):
|
class NoCython(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@ -110,14 +106,8 @@ with io.open("README.md", encoding="utf-8") as f:
|
||||||
long_desc = f.read()
|
long_desc = f.read()
|
||||||
del f
|
del f
|
||||||
|
|
||||||
name = "msgpack"
|
|
||||||
|
|
||||||
if TRANSITIONAL:
|
|
||||||
name = "msgpack-python"
|
|
||||||
long_desc = "This package is deprecated. Install msgpack instead."
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=name,
|
name="msgpack",
|
||||||
author="Inada Naoki",
|
author="Inada Naoki",
|
||||||
author_email="songofacandy@gmail.com",
|
author_email="songofacandy@gmail.com",
|
||||||
version=version_str,
|
version=version_str,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue