-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
36 lines (31 loc) · 1019 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
36
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open('README.rst') as r:
readme = r.read()
with open('AUTHORS.txt') as a:
# reSt-ify the authors list
authors = ''
for author in a.read().split('\n'):
authors += '| '+author+'\n'
with open('LICENSE.txt') as l:
license = l.read()
setup(
name='jupyternotify',
version='0.1.15',
description='A Jupyter Notebook %%magic for Browser Notifications of Cell Completion',
long_description=readme+'\n\n'+authors+'\nLicense\n-------\n'+license,
author='Michelangelo D\'Agostino',
author_email='[email protected]',
url='https://github.com/shoprunner/jupyter-notify',
license='BSD-3-Clause',
packages=find_packages(exclude=('tests', 'docs')),
package_data={'jupyternotify': ['js/*.js']},
install_requires=[
'ipython',
'jupyter'
],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6'
]
)