forked from vega/ipyvega
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 718 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='vegawidget',
version='0.1',
description='An IPython widget for polestar and voyager',
author='Dominik Moritz, Kanit "Ham" Wongsuphasawat',
author_email='domoritz@gmail.com',
license='MIT License',
url='https://github.com/uwdata/ipython-vega',
keywords='data visualization',
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License'],
packages=['vegawidget'],
package_data={'': ['static/*.js',
'static/*.css']}
)