forked from nteract/vdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (26 loc) · 786 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#!/usr/bin/env python
from os.path import exists
from setuptools import setup
import versioneer
ipython_req = 'ipython'
import sys
if sys.version_info[0] < 3 and 'bdist_wheel' not in sys.argv:
ipython_req = 'ipython<6'
setup(name='vdom',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='VDOM for Python',
author='nteract contributors',
author_email='[email protected]',
license='BSD',
keywords="vdom, html",
long_description=(open('README.md').read() if exists('README.md') else ''),
url='https://github.com/nteract/vdom',
packages=['vdom'],
install_requires=[
ipython_req,
'jsonschema'
],
)