-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 838 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 838 Bytes
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
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='nbdock',
version='0.1',
description='',
author='Cedric GESTES',
author_email='cedric.gestes@gmail.com',
license='BSD License',
url='https://github.com/kwikteam/ipython-nbdock',
keywords='interactive interaction python ipython widgets widget dock dockable float floating window ide',
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: BSD License'],
packages=['nbdock'],
package_data={'': ['static/*.js',
'static/dockspawn/*.js',
'static/dockspawn/css/*.css',
'static/dockspawn/css/*.png']}
)