forked from computationalmodelling/nbval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.01 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
from setuptools import setup
from nbval._version import __version__
with open('README.md') as f:
readme = f.read()
setup(
name="nbval",
version=__version__,
author="Laslett, Cortes, Fauske, Kluyver, Pepper, Fangohr",
description='A py.test plugin to validate Jupyter notebooks',
long_description=readme,
long_description_content_type="text/markdown",
packages = ['nbval'],
url='https://github.com/computationalmodelling/nbval',
# the following makes a plugin available to pytest
entry_points = {
'pytest11': [
'nbval = nbval.plugin',
]
},
install_requires = [
'pytest >= 2.8',
'jupyter_client',
'nbformat',
'ipykernel',
'coverage',
],
python_requires='>=3.6, <4',
classifiers = [
'Framework :: IPython',
'Framework :: Pytest',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
]
)