forked from mailgun/talon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 807 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 807 Bytes
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
from setuptools import setup, find_packages
from setuptools.command.install import install
setup(
name="talon",
version="1.4.8+noml.1",
description="Mailgun library " "to extract message quotations and signatures.",
long_description=open("README.rst").read(),
author="Mailgun Inc.",
author_email="admin@mailgunhq.com",
url="https://github.com/mailgun/talon",
license="APACHE2",
packages=find_packages(exclude=["tests", "tests.*", "talon.signature", "talon.signature.*"]),
include_package_data=True,
zip_safe=True,
install_requires=[
"lxml>=2.3.3",
"regex>=1",
"chardet>=1.0.1",
"cchardet>=0.3.5",
"cssselect",
"six>=1.10.0",
"html5lib",
],
tests_require=["mock", "nose>=1.2.1", "coverage"],
)