Skip to content

Commit d81ded6

Browse files
committed
fix(setuptools): use find_packages instead of manually specifying them
1 parent afd5887 commit d81ded6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
from setuptools import setup
2+
from setuptools import setup, find_packages
33
try:
44
import mando
55
except ImportError as e:
@@ -27,7 +27,7 @@
2727
description='Create Python CLI apps with little to no effort at all!',
2828
platforms='any',
2929
long_description=readme,
30-
packages=['mando', 'mando.tests'],
30+
packages=find_packages(),
3131
install_requires=deps,
3232
extras_require={'restructuredText': ['rst2ansi'],},
3333
test_suite='mando.tests',

0 commit comments

Comments
 (0)