-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 882 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
#!/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='lukas.koschmieder@rwth-aachen.de',
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'],
)