-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 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
39
40
from setuptools import setup
import os
NAME = "nbexec"
HERE = os.path.abspath(os.path.dirname(__file__))
version_ns = {}
with open(os.path.join(HERE, NAME, '__version__.py')) as f:
exec(f.read(), {}, version_ns)
setup(
name = NAME,
version = version_ns['__version__'],
description = "A dead-simple tool for executing Jupyter notebooks from the command line.",
url = "http://github.com/jsvine/nbexec",
author = "Jeremy Singer-Vine",
author_email = "jsvine@gmail.com",
license = "MIT",
keywords = "jupyter",
packages = [
NAME
],
install_requires = [
"jupyter_client",
"nbformat",
"nbconvert"
],
entry_points = {
"console_scripts": [
"nbexec = nbexec.cli:main"
]
},
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Information Analysis",
],
)