-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (34 loc) · 1.04 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
readme = f.read()
setup(
name='scalation_kernel',
version='1.2.1',
packages=['scalation_kernel'],
description='ScalaTion kernel for Jupyter',
long_description=readme,
author='Michael E. Cotterell',
author_email='mepcott@uga.edu',
url='https://github.com/scalation/scalation_kernel',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Education',
'Framework :: Jupyter',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Natural Language :: English',
],
install_requires=[
'jupyter',
'ipykernel',
'pexpect',
'mako',
'matplotlib',
],
keywords='jupyter kernel scala scalation',
)