-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
44 lines (37 loc) · 1.2 KB
/
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
36
37
38
39
40
41
42
43
44
from __future__ import print_function
import os
from setuptools import setup
try:
descr = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
except IOError:
descr = ''
try:
from pypandoc import convert
descr = convert(descr, 'rst', format='md')
except ImportError:
pass
classifiers = [
'Development Status :: 2 - Pre-Alpha'
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Python Software Foundation License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Visualization',
]
setup_parameters = dict(
name="mpl-altair",
version='0.0.0',
description="Convert altair objects to Matplotlib Figures",
author="Matplotlib Development Team",
install_requires=['matplotlib>=2.2.0', 'altair>=2'],
author_email="[email protected]",
url="https://github.com/matplotlib/mpl-altair",
packages=['mplaltair'],
python_requires='>=3.5',
license="BSD",
platforms='any',
classifiers=classifiers,
long_description=descr)
setup(**setup_parameters)