jupyterlab_iframe/setup.py

41 lines
1.1 KiB
Python
Raw Permalink Normal View History

2018-03-13 00:44:53 -04:00
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='jupyterlab_iframe',
2018-06-06 20:03:54 -04:00
version='0.0.8',
2018-03-13 00:44:53 -04:00
description='IFrame widgets for JupyterLab',
long_description=long_description,
url='https://github.com/timkpaine/jupyterlab_iframe',
2018-06-06 20:03:54 -04:00
download_url='https://github.com/timkpaine/jupyterlab_iframe/archive/v0.0.8.tar.gz',
2018-03-13 00:44:53 -04:00
author='Tim Paine',
author_email='t.paine154@gmail.com',
license='GPL',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='jupyter jupyterlab',
packages=find_packages(exclude=['tests', ]),
2018-06-06 20:03:54 -04:00
data_files=[('', ["LICENSE", "README.md"])],
2018-03-13 00:44:53 -04:00
zip_safe=False,
# entry_points={
# 'console_scripts': [
# 'sample=sample:main',
# ],
# },
)