forked from hmiladhia/nbmanips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (59 loc) · 1.76 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
from pathlib import Path
import setuptools
long_description = Path('README.md').read_text(encoding='utf-8')
version = Path('nbmanips/VERSION').read_text(encoding='utf-8').strip()
setuptools.setup(
name='nbmanips',
version=version,
author='Dhia HMILA',
author_email='[email protected]',
description='nbmanips allows you easily manipulate notebook files',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
url='https://github.com/hmiladhia/nbmanips',
packages=setuptools.find_packages(include=[('nbmanips*')]),
include_package_data=True,
entry_points={
'console_scripts': [
'nbmanips=nbmanips.__main__:nbmanips',
'nb=nbmanips.__main__:nbmanips',
],
},
install_requires=[
'nbconvert>=6.0.0',
'nbformat>=5.1.3',
'html2text==2020.1.16',
'cloudpickle>=1.6.*',
'click>=7.1.*',
'Pygments>=2.10.*',
'colorama>=0.4.*',
'beautifulsoup4>=4.10.*',
'lxml',
],
extras_require={
'images': ['img2text>=0.0.2'],
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
keywords=[
'jupyter',
'notebook',
'ipynb',
'dbc',
'zpln',
'zeppelin',
'slides',
'notebooks',
],
)