-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
35 lines (28 loc) · 1.07 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
# -*- coding: utf-8 -*-
"""
Created on Wed May 29 22:22:45 2019
@author: Jim Luo
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="jupyterexcel",
version="0.0.11",
author="Jim Luo",
author_email="[email protected]",
description="A python Jupyter extensions to make notebooks web api for Excel to call using UDF forumla or Ribbon Callback. Jupyter Excel, Python Excel",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/luozhijian/jupyterexcel",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)
print("\nPlease run the following commands to enable jupyterexcel:")
print(" jupyter serverextension enable --py --sys-prefix jupyterexcel")
print(" also follow up the steps to config server and use token to link to jupyter pages")
#EOF