forked from gawel/impress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 896 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 896 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
31
32
from setuptools import setup, find_packages
version = '0.4'
setup(name='impress',
version=version,
description=(
"Generate slides from rest files using sphinx and impress.js"),
long_description="""
Check the docs: http://gawel.github.com/impress/
And the source code: http://github.com/gawel/impress/
""",
classifiers=[],
keywords='sphinx impress.js',
author='Gael Pasgrimaud',
author_email='gael@gawel.org',
url='http://gawel.github.com/impress/',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'Sphinx',
],
entry_points="""
# -*- Entry points: -*-
[console_scripts]
impress = impress:main
""",
)