This repository has been archived by the owner on Jul 15, 2022. It is now read-only.
forked from koodaamo/tnefparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.55 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
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages, Command
import sys, os
version = '1.2.2'
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import sys,subprocess
errno = subprocess.call([sys.executable, 'runtests.py'])
raise SystemExit(errno)
setup(name='tnefparse',
version=version,
description="a TNEF decoding library written in python, without external dependencies",
long_description="""\n""",
classifiers=[
'Topic :: Communications :: Email',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Development Status :: 4 - Beta',
'Environment :: Console',
],
keywords='TNEF MAPI decoding mail email microsoft',
author='Petri Savolainen',
author_email='[email protected]',
url='https://github.com/koodaamo/tnefparse',
license='LGPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
entry_points = {
'console_scripts': ['tnefparse = tnefparse.cmdline:tnefparse']
},
cmdclass = {'test': PyTest},
)