forked from Mortal/evince-synctex
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
28 lines (24 loc) · 832 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
28
from setuptools import setup, find_packages
from evince_synctex import __doc__ as DESCRIPTION
headline = DESCRIPTION.split('\n', 1)[0].rstrip('.')
setup(
name='evince-synctex',
version='0.1.0',
description=headline,
long_description=DESCRIPTION,
author='https://github.com/efoerster',
url='https://github.com/efoerster/evince-synctex',
py_modules=['evince_synctex'],
include_package_data=True,
license='GPLv3',
entry_points={
'console_scripts': ['evince-synctex=evince_synctex:main'],
},
classifiers=[
'License :: OSI Approved :: GNU General Public License (GPL)',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)