Merge pull request #24 from adamchainz/dont_package_tests

setup.py - don't distribute tests
pull/25/head
Adrien Vergé 8 years ago committed by GitHub
commit adcb2d2953

@ -42,7 +42,7 @@ setup(
'Topic :: Software Development :: Testing', 'Topic :: Software Development :: Testing',
], ],
packages=find_packages(), packages=find_packages(exclude=['tests', 'tests.*']),
entry_points={'console_scripts': ['yamllint=yamllint.cli:run']}, entry_points={'console_scripts': ['yamllint=yamllint.cli:run']},
package_data={'yamllint': ['conf/*.yaml'], package_data={'yamllint': ['conf/*.yaml'],
'tests': ['yaml-1.2-spec-examples/*']}, 'tests': ['yaml-1.2-spec-examples/*']},

Loading…
Cancel
Save