-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 911 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
from setuptools import setup, find_packages
setup(
name="dispatches-nbcheck",
author="Ludovico Bianchi",
author_email="lbianchi@lbl.gov",
setup_requires=["setuptools_scm"],
use_scm_version={
"version_scheme": "post-release",
},
install_requires=[
"pytest >= 7",
"nbformat",
# we use a relatively tight pinning for nbval
# since we rely on several non-CLI APIs directly
"nbval ~= 0.10",
"ipykernel", # ipykernel.kernelspec
],
packages=find_packages(),
entry_points={
"pytest11": [
"nbcheck = nbcheck.plugin",
],
"nbcheck.static": [
"headers = nbcheck.headers",
"cell_order = nbcheck.cell_order",
],
"nbcheck.exec": [
"execution = nbcheck.execution",
],
},
classifiers=[
"Framework :: Pytest",
]
)