forked from mirrors/gecko-dev
Updated to 3.2.5. MozReview-Commit-ID: 34OG1iGeMVW --HG-- extra : rebase_source : 3ffa191b142f60897abb0728f53e71b8cda52701
11 lines
314 B
Python
11 lines
314 B
Python
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",
|
|
)
|