forked from anaconda/nb_conda_kernels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 693 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
import versioneer
setuptools.setup(
name="nb_conda_kernels",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url="https://github.com/Anaconda-Platform/nb_conda_kernels",
author="Continuum Analytics",
description="Launch Jupyter kernels for any installed conda environment",
long_description=open('README.md').read(),
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
"jupyter_client.kernel_providers": [
# The name before the '=' should match the id attribute
'conda = nb_conda_kernels.discovery:CondaKernelProvider',
]}
)