forked from mailgun/flanker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (46 loc) · 1.75 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# coding:utf-8
from setuptools import setup, find_packages
setup(name='flanker',
version='0.4.41.dev1',
description='Mailgun Parsing Tools',
long_description=open('README.rst').read(),
keywords='',
author='Mailgun Inc.',
author_email='admin@mailgunhq.com',
url='http://mailgun.net',
license='Apache 2',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Communications :: Email',
'Topic :: Communications :: Email :: Mail Transport Agents',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'],
include_package_data=True,
zip_safe=True,
tests_require=[
'nose',
'mock'
],
install_requires=[
'chardet>=1.0.1',
'cchardet>=0.3.5',
'cython>=0.21.1',
'dnsq>=1.1.6',
'expiringdict>=1.1.2',
'WebOb>=0.9.8',
'redis>=2.7.1',
# IMPORTANT! Newer regex versions are a lot slower for
# mime parsing (100x slower) so keep it as-is for now.
'regex>=0.1.20110315',
'cryptography>=0.5',
'six>=1.10.0',
],
)