-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
36 lines (34 loc) · 1004 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
import versioneer
from setuptools import setup, find_packages
try:
with open('README.md') as f:
long_description = f.read()
except:
long_description = ''
print('Failed to load README.md as long_description')
setup(
name='nbconflux',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Converts Jupyter Notebooks to Atlassian Confluence (R) pages using nbconvert',
long_description=long_description,
long_description_content_type="text/markdown",
author='Valassis Digital',
url='https://github.com/Valassis-Digital-Media/nbconflux',
platforms=['Linux', 'Mac OSX', 'Windows'],
packages=find_packages(),
include_package_data = True,
license='BSD 3-Clause',
entry_points = {
'console_scripts': [
'nbconflux = nbconflux.cli:main'
]
},
install_requires=[
'bleach',
'nbconvert>=5.3',
'requests',
'traitlets',
'html5lib',
],
)