-
Notifications
You must be signed in to change notification settings - Fork 369
/
setup.py
60 lines (57 loc) · 1.85 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
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup
import landslide
setup(
name=landslide.__title__,
version=landslide.__version__,
description='HTML5 slideshow generator for Markdown, ReST, and Textile',
packages=['landslide'],
include_package_data=True,
zip_safe=False,
author=landslide.__author__,
author_email=landslide.__author_email__,
url='http://github.com/adamzap/landslide',
license=landslide.__license__,
platforms=['any'],
keywords=[
'markdown',
'slideshow',
'presentation',
'rst',
'restructuredtext',
'textile'
],
install_requires=[
'MarkupSafe==2.1.2',
'Jinja2==3.1.2',
'Markdown==3.4.1',
'Pygments==2.14.0',
'docutils==0.19'
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'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://landslide.adamzap.com/>`_.
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',
]
},
)