Skip to content

Commit

Permalink
Add setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-koschmieder committed Mar 1, 2019
1 parent db722bc commit 3c7825d
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/usr/bin/env python
# -*- coding: utf-8
from sys import version_info
from setuptools import setup

setup(
name='aixplot',
version='0.1.0',
description='Simple "live plotter" for Jupyter',
author='Lukas Koschmieder',
author_email='[email protected]',
license='MIT',
url='https://github.com/lukas-koschmieder/aixplot',
requires=['bqplot', 'ipywidgets'],
packages=['aixplot'],
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development'],
keywords=['Plot', 'Visualization', 'Jupyter', 'JupyterLab', 'Widget'],
)

0 comments on commit 3c7825d

Please sign in to comment.