fwknop: init script improvements
[feed/packages.git] / lang / python / python-automat / patches / 003-omit-tests.patch
1 --- a/setup.py
2 +++ b/setup.py
3 @@ -21,7 +21,7 @@ setup(
4 Self-service finite-state machines for the programmer on the go.
5 """.strip(),
6 long_description=long_description,
7 - packages=find_packages(exclude=[]),
8 + packages=find_packages(exclude=["*._test", "*._test.*"]),
9 package_dir={'automat': 'automat'},
10 install_requires=[
11 "attrs>=16.1.0",
12 @@ -30,6 +30,7 @@ setup(
13 author='Glyph',
14 author_email='glyph@twistedmatrix.com',
15 include_package_data=True,
16 + exclude_package_data={'':['_test/*']},
17 license="MIT",
18 keywords='fsm finite state machine automata',
19 classifiers=[