We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f92504b + 50cffb8 commit dc1e1ceCopy full SHA for dc1e1ce
2 files changed
setup.py
@@ -19,7 +19,7 @@
19
# THE SOFTWARE.
20
#
21
22
-from setuptools import setup, find_packages
+from setuptools import setup, find_namespace_packages
23
24
with open('README.md') as f:
25
readme = f.read()
@@ -28,7 +28,7 @@
28
license = f.read()
29
30
setup(name='python-slimta',
31
- version='5.0.1',
+ version='5.0.2',
32
author='Ian Good',
33
author_email='ian@icgood.net',
34
description='Lightweight, asynchronous SMTP libraries.',
@@ -37,8 +37,7 @@
37
license='MIT',
38
url='http://slimta.org/',
39
include_package_data=True,
40
- packages=find_packages(),
41
- namespace_packages=['slimta'],
+ packages=find_namespace_packages(include=['slimta.*']),
42
install_requires=['gevent >= 1.1rc',
43
'pysasl >= 0.5.0',
44
'pycares >= 1'],
slimta/__init__.py
0 commit comments