forked from adamzap/landslide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (47 loc) · 1.58 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
setup(
name='landslide',
version='1.1.3',
description='Lightweight markup language-based html5 slideshow generator',
packages=find_packages('src'),
package_dir = {'': 'src'},
include_package_data=True,
zip_safe=False,
author='Adam Zapletal',
author_email='adamzap@gmail.com',
url='http://github.com/adamzap/landslide',
license='Apache 2.0',
platforms=['any'],
keywords=[
'markdown',
'slideshow',
'presentation',
'rst',
'restructuredtext',
'textile'
],
install_requires=['Jinja2', 'Markdown', 'Pygments', 'docutils', 'six'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Topic :: Multimedia :: Graphics :: Presentation',
'Topic :: Text Processing :: Markup'
],
long_description="""\
Landslide takes your Markdown, ReST, or Textile file(s) and generates fancy
HTML5 slideshow like `this <http://adamzap.com/random/landslide.html>`_.
Read the `README <http://github.com/adamzap/landslide/blob/master/README.md>`_
for formatting instructions and more information.
""",
entry_points={
"console_scripts": [
"landslide = landslide.main:main",
]
},
)