-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
38 lines (33 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
# should be loaded below
__version__ = None
with open('nbpresent/_version.py') as version:
exec(version.read())
with open('./README.rst') as readme:
README = readme.read()
setup(
name="nbpresent",
version=__version__,
description="Next generation slides from Jupyter Notebooks",
long_description=README,
author="Nicholas Bollweg",
author_email="[email protected]",
license="BSD-3-Clause",
url="https://github.com/Anaconda-Platform/nbpresent",
keywords="ipython jupyter markdown presentation slides revealjs d3",
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: IPython",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License"
],
packages=["nbpresent"],
setup_requires=["notebook"],
tests_require=["nose", "requests", "coverage"],
include_package_data=True,
entry_points={
'console_scripts': ['nbpresent=nbpresent.export:main'],
}
)