Files
talon/setup.py

32 lines
880 B
Python
Raw Permalink Normal View History

2014-07-23 21:12:54 -07:00
from setuptools import setup, find_packages
setup(name='talon',
2016-02-29 14:50:52 -08:00
version='1.2.4',
2014-07-23 21:12:54 -07:00
description=("Mailgun library "
"to extract message quotations and signatures."),
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",
"numpy",
"scipy",
"scikit-learn==0.16.1", # pickled versions of classifier, else rebuild
'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
]
)