forked from closeio/quotequail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 958 Bytes
/
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
from setuptools import setup
setup(
name="quotequail",
version="0.2.3",
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 :: 3",
"Topic :: Communications :: Email",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)