-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
27 lines (22 loc) · 891 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
from distutils import core
kw = {
'name' : 'jwzthreading',
'version' : '0.92',
'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",
'author_email' : "[email protected]",
'url' : "http://www.amk.ca/python/code/jwz.html",
'py_modules' : ['jwzthreading'],
'classifiers' : [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Communications :: Email',
]
}
core.setup(**kw)