forked from akuchling/jwzthreading
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (24 loc) · 898 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from jwzthreading.jwzthreading import __version__
kw = {
'name': 'jwzthreading',
'version': __version__,
'description': 'Algorithm for threading mail messages.',
'long_description' : '''Contains an implementation of an algorithm for threading mail
messages, as described at http://www.jwz.org/doc/threading.html.''',
'author': "A.M. Kuchling et al",
'packages': ['jwzthreading'],
'classifiers': [
'Development Status :: 3 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Communications :: Email',
]
}
setup(**kw)