This repository has been archived by the owner on Nov 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
38 lines (35 loc) · 1.43 KB
/
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
30
31
32
33
34
35
36
37
38
from setuptools import setup
from setuptools import find_packages
__version__ = '0.4.3'
if __name__ == '__main__':
setup(
name='iplotter',
version=__version__,
description='JavaScript Charting for iPython/Jupyter notebooks',
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md',
url='https://github.com/niloch/iplotter',
author='csulliva',
author_email='csulliva@brandeis.edu',
license='MIT',
packages=find_packages(),
install_requires=[
'Jinja2>=2.0', 'ipython>=3.0', 'notebook>=3.0', 'selenium>=3.0'
],
zip_safe=False,
include_package_data=True,
keywords=['ipython', 'plotly', 'c3.js', 'plot', 'chart', 'plotly.js',
'charts.js', 'chartist.js', 'jupyter'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Visualization',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
])