-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
35 lines (33 loc) · 986 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
34
35
from setuptools import setup
readme = """Jupyter kernel for Coq.
See: https://github.com/EugeneLoy/coq_jupyter
"""
setup(
name='coq_jupyter',
version='1.6.2',
packages=['coq_jupyter'],
description='Coq kernel for Jupyter',
long_description=readme,
author='Eugene Loy',
author_email='eugeny.loy@gmail.com',
url='https://github.com/EugeneLoy/coq_jupyter',
include_package_data=True,
install_requires=[
'jupyter_client',
'IPython',
'ipykernel',
'future',
'pexpect>=4.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'Framework :: Jupyter',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development'
],
)