-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 943 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 943 Bytes
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
import setuptools
with open('README.md', "r") as f:
readme = f.read()
setuptools.setup(
name='distributed_notebook',
version='0.2',
packages=setuptools.find_packages(".", exclude=["distributed_notebook.demo"]),
# packages=['distributed_notebook.demo', 'distributed_notebook.sync', 'distributed_notebook.kernel', 'distributed_notebook.smr'],
description='Distributed notebook for Jupyter',
long_description=readme,
author='Benjamin Carver',
author_email='bcarver2@gmu.edu',
url='https://github.com/scusemua/distributed_notebook',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
entry_points={
'jupyter_client.kernel_provisioners': [
'gateway-provisioner = distributed_notebook.provisioner:GatewayProvisioner',
],
},
include_package_data=True,
)