forked from zapier/email-reply-parser
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issues with installing via pip
- Loading branch information
1 parent
23b05e0
commit 1ce8bb8
Showing
5 changed files
with
14 additions
and
7 deletions.
There are no files selected for viewing
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from setuptools import setup, find_packages | ||
import os | ||
|
||
|
||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
setup( | ||
name='email_reply_parser', | ||
version='0.1.2', | ||
version='0.1.5', | ||
description='A email parser library, making it easy to extract a signature, reply, or quote block from a text-formatted email.', | ||
packages=find_packages('email_reply_parser', 'tests'), | ||
long_description=read('README.md'), | ||
author='Royce Haynes', | ||
author_email='[email protected]', | ||
url='https://github.com/zapier/email-reply-parser', | ||
license='MIT', | ||
packages=find_packages(exclude=('tests')), | ||
test_suite='tests.test_email_message' | ||
) | ||
license=read('LICENSE'), | ||
test_suite='tests.test_email_reply_parser' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
import test_email_reply_parser |
4 changes: 2 additions & 2 deletions
4
tests/test_email_message.py → tests/test_email_reply_parser.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters