2018-01-16 03:33:46 +08:00
|
|
|
--- a/setup.py
|
|
|
|
+++ b/setup.py
|
2023-05-17 19:03:52 +08:00
|
|
|
@@ -12,7 +12,7 @@ setup(
|
2018-01-16 03:33:46 +08:00
|
|
|
Self-service finite-state machines for the programmer on the go.
|
|
|
|
""".strip(),
|
2023-05-17 19:03:52 +08:00
|
|
|
readme='README.md',
|
2018-01-16 03:33:46 +08:00
|
|
|
- packages=find_packages(exclude=[]),
|
|
|
|
+ packages=find_packages(exclude=["*._test", "*._test.*"]),
|
|
|
|
package_dir={'automat': 'automat'},
|
2023-05-17 19:03:52 +08:00
|
|
|
setup_requires=[
|
|
|
|
'wheel',
|
|
|
|
@@ -25,6 +25,7 @@ setup(
|
2018-01-16 03:33:46 +08:00
|
|
|
author='Glyph',
|
|
|
|
author_email='glyph@twistedmatrix.com',
|
|
|
|
include_package_data=True,
|
|
|
|
+ exclude_package_data={'':['_test/*']},
|
|
|
|
license="MIT",
|
|
|
|
keywords='fsm finite state machine automata',
|
2018-06-25 02:30:08 +08:00
|
|
|
classifiers=[
|