-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.33 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
if __name__ == '__main__':
from setuptools import setup, Extension
_synctex_parser = Extension('pysynctex._synctex_parser',
sources=['wrapper/synctex_parser.i',
'wrapper/synctex_package/synctex_parser.c',
'wrapper/synctex_package/synctex_parser_utils.c'],
include_dirs=['wrapper/synctex_package'])
setup(name='PySyncTeX',
version='0.2.0',
author='Jan Kumor',
author_email='[email protected]',
description='Python wrapper for SyncTeX parser C library.',
long_description=open('README.rst').read(),
url='https://github.com/elohhim/PySyncTeX',
license="MIT",
platforms='ANY',
packages=['pysynctex'],
ext_modules=[_synctex_parser],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Natural Language :: English',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: LaTeX',
]
)