forked from jupyter/nbgrader
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
70 lines (66 loc) · 1.63 KB
/
setup.cfg
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
64
65
66
67
68
69
70
[metadata]
name = nbgrader
version = attr: nbgrader._version.__version__
description = A system for assigning and grading notebooks
long_description = file: README.md
long_description_content_type = text/markdown
license_file = LICENSE
author = Jupyter Development Team
author_email = [email protected]
url = https://github.com/jupyter/nbgrader
platforms = Linux, Mac OS X, Windows
keywords = Jupyter, Notebooks, Grading, Homework, JupyterLab
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Framework :: Jupyter
Framework :: Jupyter :: JupyterLab
Framework :: Jupyter :: JupyterLab :: 3
Framework :: Jupyter :: JupyterLab :: Extensions
Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
[options]
include_package_data = True
packages = find:
python_requires = >=3.7
install_requires =
sqlalchemy>=1.4,<2
python-dateutil>=2.8
notebook>=6.4,<7
nbconvert>=6
requests>=2.26
jsonschema>=3
alembic>=1.7
rapidfuzz>=1.8
Jinja2>=3
MarkupSafe<2.2.0
jupyter_client<8
jupyter_server>=1.12
ipywidgets>=7.6
nbclient>=0.6.1
traitlets<5.2.0
jupyterlab<4
jupyterlab_server
[options.extras_require]
docs =
sphinx
sphinx_rtd_theme
sphinx-autodoc-typehints
myst-parser
tests =
pytest==7.1.2
pytest-cov
pytest-rerunfailures
pytest-xdist==2.5.0
pytest-tornasync
jupyter_packaging
coverage
selenium>2.4
codecov
nbval
requests-mock
wheel
tbump
[options.entry_points]
console_scripts =
nbgrader = nbgrader.apps.nbgraderapp:main