forked from executablebooks/jupyter-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (51 loc) · 1.98 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
"""jupyter-cache package setup."""
from importlib import import_module
from setuptools import find_packages, setup
setup(
name="jupyter-cache",
version=import_module("jupyter_cache").__version__,
description=("A defined interface for working with a cache of jupyter notebooks."),
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/ExecutableBookProject/jupyter-cache",
author="Chris Sewell",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
entry_points={
"console_scripts": ["jcache = jupyter_cache.cli.commands.cmd_main:jcache"],
"jupyter_executors": [
"basic = jupyter_cache.executors.basic:JupyterExecutorBasic"
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.6",
# note: nbdime could be made an extra
install_requires=[
"attrs",
"nbformat",
"nbdime",
# "nbclient~=0.1",
"nbconvert",
"sqlalchemy~=1.3.12",
],
extras_require={
"cli": ["click", "click-completion", "click-log", "tabulate", "pyyaml"],
"code_style": ["flake8<3.8.0,>=3.7.0", "black", "pre-commit==1.17.0"],
"testing": ["coverage", "pytest>=3.6,<4", "pytest-cov", "pytest-regressions"],
"rtd": ["myst-nb~=0.7", "sphinx-copybutton", "pydata-sphinx-theme"],
},
zip_safe=True,
)