forked from closeio/quotequail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup
setup(
name='quotequail',
version='0.2.2',
url='http://github.com/closeio/quotequail',
license='MIT',
author='Thomas Steinacher',
author_email='[email protected]',
maintainer='Thomas Steinacher',
maintainer_email='[email protected]',
description='A library that identifies quoted text in plain text and HTML email messages.',
long_description=__doc__,
packages=[
'quotequail',
],
test_suite='tests',
tests_require=['lxml'],
platforms='any',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Communications :: Email',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)