forked from wrobstory/vincent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 909 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
27
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
classifiers = (
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'License :: OSI Approved :: MIT License',
)
required = ('pandas')
kw = {
'name': 'vincent',
'version': '0.4.4',
'description': 'A Python to Vega translator',
'long_description': open('README.rst', 'rt').read(),
'author': 'Rob Story',
'author_email': '[email protected]',
'license': 'MIT License',
'url': 'https://github.com/wrobstory/vincent',
'keywords': 'data visualization',
'classifiers': classifiers,
'packages': ['vincent'],
'package_data': {'vincent': ['*.html']},
'install_requires': required,
'zip_safe': True,
}
setup(**kw)