forked from vericast/spylon-kernel
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (35 loc) · 1.11 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
from setuptools import setup, find_packages
import versioneer
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except Exception:
long_description = open('README.md').read()
setup(
name='spylon-kernel',
description='Jupyter metakernel for apache spark and scala',
long_description=long_description,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url='http://github.com/maxpoint/spylon-kernel',
install_requires=[
'ipykernel',
'jedi>=0.10',
'metakernel',
'spylon[spark]',
'tornado',
],
packages=list(find_packages()),
author='Marius van Niekerk',
author_email='marius.v.niekerk+spylon@gmail.com',
maintainer='Marius van Niekerk',
maintainer_email='marius.v.niekerk+spylon@gmail.com',
license="BSD 3-clause",
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
],
)