-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
65 lines (58 loc) · 1.88 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#-*- coding: utf-8 -*-
from sys import version
if not version[0] == '3':
raise RuntimeError('this is for Python3 only!')
from distutils.core import setup, Extension
unrtf_c_sources = list(map(lambda f: 'unrtf_ext/src/{}'.format(f), [
'attr.cpp',
'convert.cpp',
'error.cpp',
'hash.cpp',
'malloc.cpp',
'my_iconv.cpp',
'output.cpp',
'parse.cpp',
'path.cpp',
'unicode.cpp',
'user.cpp',
'util.cpp',
'word.cpp',
'lib.cpp',
'pylib.cpp',
]))
unrtf_conf_files = list(map(lambda f: 'unrtf_ext/config/{}'.format(f), [
'html.conf',
'latex.conf',
'rtf.conf',
'SYMBOL.charmap',
'text.conf',
'troff_mm.conf',
'vt.conf'
]))
unrtf_module = Extension('_unrtf',
define_macros = [('PACKAGE_VERSION', '"1"'),
('PKGDATADIR', '"/usr/local/share/python-unrtf/"')],
sources = unrtf_c_sources,
include_dirs = ['./unrtf_ext/src'])
setup (name = 'unrtf',
version = '0.1.7',
description = 'GNU unrtf python bindings',
author = 'Sławomir Zborowski',
author_email = '[email protected]',
url = 'https://github.com/szborows/python-unrtf',
license = 'GNU General Public License v3 (GPLv3)',
py_modules=['unrtf'],
ext_modules = [unrtf_module],
data_files = [('/usr/local/share/python-unrtf/', unrtf_conf_files)],
keywords = 'unrtf rtf',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities'
])