30 lines
824 B
Python
Executable File
30 lines
824 B
Python
Executable File
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(name='talon',
|
|
version='1.0.6',
|
|
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']),
|
|
include_package_data=True,
|
|
zip_safe=True,
|
|
install_requires=[
|
|
"lxml>=2.3.3",
|
|
"regex>=1",
|
|
"html2text",
|
|
"numpy",
|
|
"scipy",
|
|
"scikit-learn==0.16.1", # pickled versions of classifier, else rebuild
|
|
],
|
|
tests_require=[
|
|
"mock",
|
|
"nose>=1.2.1",
|
|
"coverage"
|
|
]
|
|
)
|