-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
25 lines (23 loc) · 886 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
with open('README.md') as f:
long_description = f.read()
setup(name='nb_pdf_template',
version='4.0.0',
description='LaTeX templates for jupyter notebook conversion to pdf',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/t-makaro/nb_pdf_template',
author='Tyler Makaro',
author_email='',
license='MIT',
packages=['nb_pdf_template'],
include_package_data=True,
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
'Topic :: Text Processing :: Markup :: LaTeX',
'Programming Language :: Python',
],
entry_points={'pygments.styles': [
'jupyter_python = nb_pdf_template:Jupyter_PythonStyle']},
zip_safe=False)