-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
25 lines (23 loc) · 836 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
from setuptools import setup, find_packages
long_description = 'Apply custom CSS styling to your jupyter notebooks.\n\nMix and match themes by:\n\n- color\n- layout\n- typography\n'
setup(
name='jupyter-themer',
version='0.4.0',
license='MIT',
description='Custom CSS themer for jupyter notebooks',
long_description=long_description,
author='Leon Chen',
author_email='[email protected]',
url='https://github.com/transcranial/jupyter-themer',
packages = find_packages(exclude=['*test*']),
package_data = {
'jupythemer': ['styles/**/*.css']
},
entry_points = {
'console_scripts' : [
'jupyter-themer = jupythemer.jupythemer:run'
]
},
install_requires=['jupyter', 'notebook'],
keywords = ['jupyter', 'ipython', 'notebook', 'themes', 'css'],
)