forked from janoliver/inkslides
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (23 loc) · 740 Bytes
/
setup.py
File metadata and controls
30 lines (23 loc) · 740 Bytes
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
from setuptools import setup
setup(
name='inkslides',
version='2.1.0',
setup_requires=['lxml'],
description='Generate PDF presentations with inkscape',
url='https://github.com/janoliver/inkslides',
author='Jan Oliver Oelerich',
license='License :: OSI Approved :: MIT License',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'License :: OSI Approved :: MIT License'
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
packages=['inkslides'],
entry_points={
'console_scripts': [
'inkslides = inkslides.inkslides:main',
],
},
)