-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
26 lines (25 loc) · 927 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
# -*- coding: utf-8 -*-
from __future__ import print_function
from setuptools import setup
try:
from ipythonpip import cmdclass
except:
import pip, importlib
pip.main(['install', 'ipython-pip']); cmdclass = importlib.import_module('ipythonpip').cmdclass
setup(
name='d3networkx',
version='0.1',
description='Visualize networkx graphs using D3.js in the IPython notebook.',
author='Jonathan Frederic',
author_email='[email protected]',
license='MIT License',
url='https://github.com/jdfreder/ipython-d3networkx',
keywords='python ipython javascript d3 networkx d3networkx widget',
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License'],
packages=['d3networkx'],
include_package_data=True,
install_requires=["ipython-pip"],
cmdclass=cmdclass('d3networkx'),
)