Skip to content

Commit 4ebe4d2

Browse files
committed
Discover all packages in the project
1 parent 4527cd7 commit 4ebe4d2

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
@@ -2,7 +2,7 @@
22
# coding=utf-8
33

44
import os
5-
from setuptools import setup
5+
from setuptools import find_packages, setup
66

77
HERE = os.path.abspath(os.path.dirname(__file__))
88
PACKAGE_NAME = 'mailjet_rest'
@@ -38,5 +38,5 @@
3838
install_requires=['requests>=2.4.3'],
3939
tests_require=['unittest'],
4040
entry_points={},
41-
packages=['mailjet_rest'],
41+
packages=find_packages(),
4242
)

0 commit comments

Comments
 (0)