Skip to content

Commit

Permalink
fix package import
Browse files Browse the repository at this point in the history
v0.1.1
  • Loading branch information
wesinator committed Dec 7, 2019
1 parent 6a8318c commit 8201cc2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -4,4 +4,4 @@
from .email_forwarder import EmailForwarder

__author__ = 'wesinator'
__version__ = '0.1.0'
__version__ = '0.1.1'
File renamed without changes.
6 changes: 3 additions & 3 deletions setup.py
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

with open('README.md') as readme_file:
readme = readme_file.read()
Expand All @@ -7,14 +7,14 @@
#license = license_file.read()

setup(name='email-forwarder',
version='0.1.0',
version='0.1.1',
description='High level email forwarding in Python.',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/wesinator/email-forwarder-python',
author='wesinator',
keywords='spam',
packages=['email-forwarder'],
packages=find_packages(exclude=('tests', 'docs')),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 8201cc2

Please sign in to comment.