forked from sylvainhalle/inkscapeslide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (29 loc) · 867 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
29
30
31
32
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='InkscapeSlide',
version="1.0",
description='Inkscape Slide - the Inkscape Presentation maker',
author='Alexandre Bourget',
author_email='[email protected]',
url='http://projects.abourget.net',
license='GPLv3',
install_requires=[
"pyPdf",
"lxml",
],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
test_suite='nose.collector',
package_data={'inkscapeslide': ['i18n/*/LC_MESSAGES/*.mo']},
#message_extractors = {'inkscapeslide': [
# ('**.py', 'python', None)]},
entry_points="""
[console_scripts]
inkscapeslide = inkscapeslide:main
""",
)