-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (26 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
# encoding: utf-8
# ------------------------------------------------------------------------
# Valerio Maggio <@leriomaggio> 2020
# IPython magic function to enable TeXBook Jupyter notebook Theme
# Author: Valerio Maggio <github.com/leriomaggio>
# Code: https://github.com/leriomaggio/notexbook-jupyter-theme/
#
# License: Apache License 2.0
# ------------------------------------------------------------------------
import os
from setuptools import setup, find_packages
CURRENT_FOLDER = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(CURRENT_FOLDER, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="notexbook-theme",
description="noTeXbook is a Jupyter notebook theme for Latex lovers ❤",
author="Valerio Maggio",
author_email="[email protected]",
url="https://github.com/leriomaggio/notexbook-jupyter-theme/",
packages=find_packages(exclude=[]),
include_package_data=True,
install_requires=["notebook", "ipython>=7.0", "jupyter", "jinja2"],
long_description=long_description,
long_description_content_type="text/markdown",
)