add a py.test placeholder setup that errors out when trying to get installed

(this is registered at pypi.python.org already)
This commit is contained in:
holger krekel 2014-10-30 11:38:13 +01:00
parent e4bb48995a
commit 883b3ca2c1
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import sys
from distutils.core import setup
if __name__ == "__main__":
if "sdist" not in sys.argv[1:]:
raise ValueError("please use 'pytest' pypi package instead of 'py.test'")
setup(
name="py.test",
version="0.0",
description="please use 'pytest' for installation",
)