Files
talon/setup.py
Scott MacVicar 8b1f87b1c0 Get this building and passing tests
Changes:
* add .DS_Store to .gitignore
* Decode base64 encoded emails for tests
* Pick a version of scikit since the pickled clasifiers are based on that
* Add missing numpy and scipy dependencies
2015-07-02 21:49:09 -04:00

28 lines
790 B
Python
Executable File

from setuptools import setup, find_packages
setup(name='talon',
version='1.0.2',
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",
"nose>=1.2.1",
"numpy",
"mock",
"coverage",
"scipy",
"scikit-learn==0.16.1", # pickled versions of classifier, else rebuild
]
)