-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (30 loc) · 907 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
"""
This project bridges PyXLL and Jupyter Notebooks.
It enables Excel add-ins to be written in Python using PyXLL, but
for the Python code to be executed in an IPython kernel running
on a Jupyter Notebook server.
For details about PyXLL, see https://www.pyxll.com.
"""
import setuptools
setuptools.setup(
name="pyxll-notebook",
version="0.1",
author="PyXLL Ltd",
author_email="[email protected]",
long_description=open("README.md").read(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=False,
package_data={
"": ["*.cfg", "*.xml", "*.png"],
},
extras_require={
"client": ["websockets", "aiohttp", "pywin32"],
"server": ["ipykernel"],
}
)