-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (29 loc) · 1.01 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
from setuptools import setup;
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read();
setup(
name='slurm_jupyter_kernel',
version='1.9',
description='Manage and start jupyter slurm kernels',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pc2/slurm_jupyter_kernel",
project_urls={
"Bug Tracker": "https://github.com/pc2/slurm_jupyter_kernel/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
author='Marcel-Brian Wilkowsky',
author_email='[email protected]',
include_package_data=True,
packages=['slurm_jupyter_kernel'],
scripts=['bin/slurmkernel'],
install_requires=['pexpect>=4.8.0', 'ipython>=8.5.0', 'jupyter_client>=7.3.5'],
entry_points={
'jupyter_client.kernel_provisioners': [
'remote-slurm-provisioner = slurm_jupyter_kernel.provisioner:RemoteSlurmProvisioner',
]
}
);