Skip to content

Commit 22e196b

Browse files
committed
Added find_packages to setup.py
1 parent 6bc8eb4 commit 22e196b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
import shutil
88
import sys
99

10-
from setuptools import setup, Command
10+
from setuptools import find_packages, setup, Command
1111

1212
from crossplane import (
1313
__title__, __summary__, __url__, __version__, __author__, __email__,
14-
__package__, __license__
14+
__license__
1515
)
1616

1717
here = os.path.abspath(os.path.dirname(__file__))
@@ -64,7 +64,7 @@ def run(self):
6464
author=__author__,
6565
author_email=__email__,
6666
url=__url__,
67-
packages=[__package__],
67+
packages=find_packages(exclude=['tests']),
6868
license=__license__,
6969
classifiers=[
7070
'Development Status :: 3 - Alpha',

0 commit comments

Comments
 (0)