forked from nojvek/vscode-ipynb-py-converter
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
27 lines (25 loc) · 878 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
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='ipynb-py-convert',
packages=['ipynb_py_convert'],
version='0.4.6',
description='Convert .py files runnable in VSCode/Python or Atom/Hydrogen to jupyter .ipynb notebooks and vice versa',
long_description=long_description,
long_description_content_type="text/markdown",
author='Noj Vek',
author_email='nojvek@gmail.com',
license='MIT',
url='https://github.com/kiwi0fruit/ipynb-py-convert',
keywords=['vscode', 'jupyter', 'convert', 'ipynb', 'py', 'atom', 'hydrogen'],
classifiers=[],
entry_points={
'console_scripts': [
'ipynb-py-convert=ipynb_py_convert.__main__:main',
],
},
)