-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1008 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 1008 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
try:
from setuptools import setup
except ImportError:
# can't have the entry_points option here.
from distutils.core import setup
required = []
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(name='slides2html',
version='1.0.0',
author="Ahmed T. Youssef",
author_email="xmonader@gmail.com",
description='convert google presentations to reveal.js website',
long_description='convert google presentations to reveal.js website',
packages=['slides2html'],
scripts=['scripts/slides2html'],
url="https://github.com/threefoldtech/slides2html",
license='BSD 3-Clause License',
install_requires=required,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)