Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use native namespace package #175

Merged
merged 1 commit into from
Feb 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# THE SOFTWARE.
#

from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages

with open('README.md') as f:
readme = f.read()
Expand All @@ -28,7 +28,7 @@
license = f.read()

setup(name='python-slimta',
version='5.0.1',
version='5.0.2',
author='Ian Good',
author_email='ian@icgood.net',
description='Lightweight, asynchronous SMTP libraries.',
Expand All @@ -37,8 +37,7 @@
license='MIT',
url='http://slimta.org/',
include_package_data=True,
packages=find_packages(),
namespace_packages=['slimta'],
packages=find_namespace_packages(include=['slimta.*']),
install_requires=['gevent >= 1.1rc',
'pysasl >= 0.5.0',
'pycares >= 1'],
Expand Down
26 changes: 0 additions & 26 deletions slimta/__init__.py

This file was deleted.