-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 852 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 jupyterpip import cmdclass
except:
import pip, importlib
pip.main(['install', 'jupyter-pip']); cmdclass = importlib.import_module('jupyterpip').cmdclass
setup(
name='ipygraphwidgets',
version='0.1.1',
description='',
author='Miguel Vaz',
author_email='[email protected]',
license='MIT',
url='https://github.com/mvaz/ipython-graph-widgets',
keywords='python ipython javascript widget d3 graph',
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License'],
packages=['ipygraphwidgets'],
include_package_data=True,
install_requires=["jupyter-pip"],
cmdclass=cmdclass('ipygraphwidgets'),
)