-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (29 loc) · 1017 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
33
34
__description__ = \
"""
Generate reveal.js slides from inkscape svg files
"""
__version__ = "0.1"
__author__ = "Michael J. Harms"
__date__ = "2018-05-10"
import sys
if sys.version_info[0] < 3:
sys.exit('Sorry, Python < 3.x is not supported')
from setuptools import setup, find_packages
setup(name="slidemachine",
packages=find_packages(),
version=__version__,
description="generate reveal.js slides from inkscape svg files",
long_description=__description__,
author='Michael J. Harms',
author_email='[email protected]',
url='https://github.com/harmsm/slidemachine',
download_url="https://github.com/harmsm/slidemachine/archive/{}.tar.gz".format(__version__),
install_requires=["mistune"],
zip_safe=False,
classifiers=['Programming Language :: Python'],
package_data={"":["*.json"]},
entry_points = {
'console_scripts': [
'slidemachine = slidemachine.console.slidemachine:main',
]
})