We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afd5887 commit d81ded6Copy full SHA for d81ded6
setup.py
@@ -1,5 +1,5 @@
1
import os
2
-from setuptools import setup
+from setuptools import setup, find_packages
3
try:
4
import mando
5
except ImportError as e:
@@ -27,7 +27,7 @@
27
description='Create Python CLI apps with little to no effort at all!',
28
platforms='any',
29
long_description=readme,
30
- packages=['mando', 'mando.tests'],
+ packages=find_packages(),
31
install_requires=deps,
32
extras_require={'restructuredText': ['rst2ansi'],},
33
test_suite='mando.tests',
0 commit comments