-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (30 loc) · 993 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
import setuptools
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='gf_kernel',
version='1.0.0',
packages=setuptools.find_packages(),
install_requires = [
'ipykernel>=5.1.0',
'ipython>=7.2.0',
'ipywidgets>=7.4.2',
'jupyter>=1.0.0',
'jupyter-client>=5.2.4',
],
description='Simple example kernel for GF',
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
author='Kai Amann',
author_email='[email protected]',
url='https://github.com/UniFormal/gf_kernel',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
]
)