6 Commits

Author SHA1 Message Date
Sergey Obukhov
b299feab1e Merge branch 'master' of github.com:mailgun/talon 2014-07-24 15:43:11 -07:00
Sergey Obukhov
95182dcfc4 add train data, classifier and fixtures to MANIFEST.in 2014-07-24 15:42:50 -07:00
Ashish Gandhi
f9fe412fa4 Merge pull request #2 from ivuk/master
Fix a typo in README.rst
2014-07-24 15:27:05 -07:00
Igor Vuk
00a8db2e3e Fix a typo in README.rst 2014-07-25 00:18:13 +02:00
Sergey Obukhov
71ae26ccd1 added MANIFEST.in and bump up the version 2014-07-24 15:09:01 -07:00
Sergey Obukhov
b0851d5363 bump up the version 2014-07-24 14:59:32 -07:00
3 changed files with 11 additions and 2 deletions

9
MANIFEST.in Normal file
View File

@@ -0,0 +1,9 @@
recursive-include tests *
recursive-include talon *
recursive-exclude tests *.pyc *~
recursive-exclude talon *.pyc *~
include train.data
include classifier
include LICENSE
include MANIFEST.in
include README.rst

View File

@@ -3,7 +3,7 @@ talon
Mailgun library to extract message quotations and signatures. Mailgun library to extract message quotations and signatures.
If you ever tried to parse message quotations or signatures you know that absense of any formatting standards in this area could make this task a nightmare. Hopefully this library will make your life much eathier. The name of the project is inspired by TALON - multipurpose robot designed to perform missions ranging from reconnaissance to combat and operate in a number of hostile environments. Thats what a good quotations and signature parser should be like :smile: If you ever tried to parse message quotations or signatures you know that absense of any formatting standards in this area could make this task a nightmare. Hopefully this library will make your life much easier. The name of the project is inspired by TALON - multipurpose robot designed to perform missions ranging from reconnaissance to combat and operate in a number of hostile environments. Thats what a good quotations and signature parser should be like :smile:
Usage Usage
----- -----

View File

@@ -7,7 +7,7 @@ from setuptools import setup, find_packages
setup(name='talon', setup(name='talon',
version='1.0', version='1.0.2',
description=("Mailgun library " description=("Mailgun library "
"to extract message quotations and signatures."), "to extract message quotations and signatures."),
long_description=open("README.rst").read(), long_description=open("README.rst").read(),