Files
talon/setup.py

26 lines
754 B
Python
Raw Normal View History

2014-07-23 21:12:54 -07:00
from setuptools import setup, find_packages
setup(name='talon',
version='1.0.2',
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=[
"lxml==2.3.3",
"regex==0.1.20110315", # handling of .* changes from version 0 to 1
2014-07-23 21:12:54 -07:00
"html2text",
"nose==1.2.1",
"mock",
2014-07-24 20:37:33 -07:00
"coverage",
"scikit-learn",
2014-07-23 21:12:54 -07:00
]
)