Skip to content

Commit

Permalink
Merge pull request #164 from mailgun/maxim/develop
Browse files Browse the repository at this point in the history
Make dnsq optional dependency
  • Loading branch information
horkhe committed Jun 22, 2017
2 parents 0194a97 + 64fcb23 commit 403a147
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -2,9 +2,9 @@ language: python
python:
- 2.7
install:
- pip install -e .
- pip install -e .[validator]
- pip install nose mock coverage coveralls
script:
- nosetests --with-coverage --cover-package=flanker
after_success:
- coveralls
- coveralls
15 changes: 8 additions & 7 deletions setup.py
Expand Up @@ -2,7 +2,6 @@

from setuptools import setup, find_packages


setup(name='flanker',
version='0.7.0',
description='Mailgun Parsing Tools',
Expand All @@ -11,9 +10,9 @@
keywords='',
author='Mailgun Inc.',
author_email='admin@mailgunhq.com',
url='http://mailgun.net',
url='https://www.mailgun.com/',
license='Apache 2',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=True,
tests_require=[
Expand All @@ -24,11 +23,13 @@
'chardet>=1.0.1',
'cchardet>=0.3.5',
'cryptography>=0.5',
'cython>=0.21.1',
'dnsq>=1.1.6',
'idna>=2.5',
'ply>=3.10',
'redis>=2.7.1',
'regex>=0.1.20110315',
'WebOb>=0.9.8'],
)
extras_require={
'validator': [
'dnsq>=1.1.6',
'redis>=2.7.1',
],
})

0 comments on commit 403a147

Please sign in to comment.