-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
22 lines (21 loc) · 1017 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
from setuptools import setup
setup(
name = "visJS2jupyter",
packages = ["visJS2jupyter"],
version = "0.1.9.dev0+git",
description= "visJS2jupyter is a tool to bring the interactivity of networks created with vis.js into Jupyter notebook cells",
long_description="0.1.8 update: visJS2jupyter is now compatible with both networkx 1.11 and 2.0. Additionally, igraph is no longer needed to install visJS2jupyter.",
url = "https://github.com/ucsd-ccbb/visJS2jupyter",
author="Brin Rosenthal ([email protected]), Mikayla Webster ([email protected]), Aaron Gary ([email protected]), Julia Len ([email protected])",
author_email="[email protected]",
keywords = ['Jupyter notebook', 'interactive', 'network'],
license = 'MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
install_requires=[
'networkx', 'numpy', 'scipy', 'IPython', 'matplotlib'
]
)