Skip to content

Commit

Permalink
Fixed issues with installing via pip
Browse files Browse the repository at this point in the history
  • Loading branch information
roycehaynes committed Nov 12, 2012
1 parent 23b05e0 commit 1ce8bb8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
Empty file added email_reply_parser/__init__.py
Empty file.
File renamed without changes.
16 changes: 11 additions & 5 deletions setup.py
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'
)
1 change: 1 addition & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import test_email_reply_parser
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest
from context import email_reply_parser
from email_reply_parser import EmailReplyParser
import email_reply_parser
from email_reply_parser.email_reply_parser import EmailReplyParser


class EmailMessageTest(unittest.TestCase):
Expand Down

0 comments on commit 1ce8bb8

Please sign in to comment.