-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
29 lines (27 loc) · 1008 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
from setuptools import setup
from os import path
import io
here = path.abspath(path.dirname(__file__))
with io.open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='colab-convert',
packages=['colab_convert'],
package_data={'colab_convert': ['lang/*.txt']},
version='2.0.5',
description='Convert .py files runnable in VSCode/Python or Atom/Hydrogen to jupyter/colab .ipynb notebooks and vice versa',
long_description=long_description,
long_description_content_type="text/markdown",
author='HostsServer',
author_email='[email protected]',
license='MIT',
url='https://github.com/MSFTserver/colab-convert',
keywords=['vscode', 'jupyter', 'convert', 'ipynb', 'py', 'atom', 'hydrogen', 'colab', 'google', 'google colab', 'notebook'],
classifiers=[],
install_requires=['json5'],
entry_points={
'console_scripts': [
'colab-convert=colab_convert.__main__:main',
],
},
)