2014-07-23 21:12:54 -07:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setup(name='talon',
|
2016-04-07 17:51:48 -07:00
|
|
|
version='1.2.6',
|
2014-07-23 21:12:54 -07:00
|
|
|
description=("Mailgun library "
|
|
|
|
|
"to extract message quotations and signatures."),
|
2014-07-24 06:56:10 -07:00
|
|
|
long_description=open("README.rst").read(),
|
2014-07-23 21:12:54 -07:00
|
|
|
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=[
|
2015-09-10 10:44:05 -07:00
|
|
|
"lxml>=2.3.3",
|
2015-03-08 00:36:19 -05:00
|
|
|
"regex>=1",
|
2015-05-06 14:16:11 -07:00
|
|
|
"numpy",
|
|
|
|
|
"scipy",
|
|
|
|
|
"scikit-learn==0.16.1", # pickled versions of classifier, else rebuild
|
2015-09-11 10:38:28 -07:00
|
|
|
'chardet>=1.0.1',
|
|
|
|
|
'cchardet>=0.3.5',
|
2015-10-14 20:31:26 -07:00
|
|
|
'cssselect'
|
2015-05-06 15:19:50 -07:00
|
|
|
],
|
|
|
|
|
tests_require=[
|
|
|
|
|
"mock",
|
|
|
|
|
"nose>=1.2.1",
|
|
|
|
|
"coverage"
|
2014-07-23 21:12:54 -07:00
|
|
|
]
|
|
|
|
|
)
|