-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
69 lines (66 loc) · 1.71 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
author='Marco Rossi',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Jupyter',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
description='Jupyter bundler extension to export notebook as a docx file',
extras_require={
'test': [
'ipython>=7.0'
'matplotlib>=3.1',
'mock',
'nbformat',
'numpy',
'pillow>=6.0.0',
'pytest',
'pytest-cov',
'pytest-lazy-fixture',
],
},
install_requires=[
'lxml',
'nbconvert>=5.5',
'notebook>=5.0',
'pandas',
'pandocfilters',
'pypandoc>=1.4',
'requests',
'tabulate',
'tornado',
],
keywords=[
'jupyter',
'docx',
'bundler',
],
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
name='jupyter-docx-bundler',
packages=[
'jupyter_docx_bundler',
'jupyter_docx_bundler.tests',
],
python_requires='>=3.6',
setup_requires=[
'setuptools>=38.6.0',
'setuptools_scm',
],
url='https://github.com/m-rossi/jupyter-docx-bundler',
use_scm_version=True,
entry_points={
'nbconvert.exporters': [
'docx = jupyter_docx_bundler:DocxExporter',
],
}
)