-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
32 lines (29 loc) · 901 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
from setuptools import setup, find_packages
version = '1.7.dev0'
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='[email protected]',
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
""",
)