-
Notifications
You must be signed in to change notification settings - Fork 204
/
setup.py
54 lines (51 loc) · 1.46 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
50
51
52
53
54
# coding:utf-8
from setuptools import setup, find_packages
tests_require = [
'coverage',
'coveralls',
'mock',
'nose',
],
setup(name='flanker',
version='0.9.11',
description='Mailgun Parsing Tools',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
],
keywords='',
author='Mailgun Technologies Inc.',
author_email='[email protected]',
url='https://www.mailgun.com/',
license='Apache 2',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=True,
tests_require=tests_require,
install_requires=[
'attrs',
'chardet>=1.0.1',
'cryptography>=0.5',
'idna>=2.5',
'ply>=3.10',
'regex>=0.1.20110315',
'six',
'tld',
'WebOb>=0.9.8'],
extras_require={
'validator': [
'dnsq>=1.1.6',
'redis>=2.7.1',
],
'cchardet': [
'cchardet>=0.3.5',
],
'tests': tests_require,
})