-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1.11 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
32
33
34
35
36
37
38
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='glif_kernel',
version='1.0.0',
packages=['glif_kernel'],
package_data={
'glif_kernel' : ['messages.json', 'unicode-latex-map', 'glif.elpi']
},
install_requires = [
'ipykernel>=5.1.0',
'ipython>=7.2.0',
'ipywidgets>=7.4.2',
'jupyter>=1.0.0',
'jupyter-client>=5.2.4',
'setuptools>=46',
'requests>=2.23',
],
description='Simple example kernel for GLF',
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/glif_kernel',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
]
)