From fff09fa2df2a47c51e2b559ac49cebc87b56903c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Fri, 19 Feb 2016 09:10:48 +0100 Subject: [PATCH] Distribution: Ship example files from spec in sdist Closes: #1 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e2d7633..2f57cd5 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,8 @@ setup( packages=find_packages(), entry_points={'console_scripts': ['yamllint=yamllint.cli:run']}, - package_data={'yamllint': ['conf/*.yml']}, + package_data={'yamllint': ['conf/*.yml'], + 'tests': ['yaml-1.2-spec-examples/*']}, install_requires=['pyyaml'], tests_require=['nose'], test_suite='nose.collector',