-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.cfg
67 lines (64 loc) · 1.57 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
[metadata]
long_description = file: README.md
long_description_content_type = text/markdown
license_file = LICENSE
description_file = README.md
platforms = Linux, Mac OS X, Windows
keywords =
Interactive
Jupyter
JupyterLab
Notebook
Web
Git
Version Control
Pull Requests
classifiers =
Framework :: Jupyter
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Framework :: Jupyter
Framework :: Jupyter :: JupyterLab
Framework :: Jupyter :: JupyterLab :: 3
Framework :: Jupyter :: JupyterLab :: Extensions
Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
[options]
python_requires = >=3.6
setup_requires =
setuptools
wheel
install_requires =
entrypoints >=0.2.2
jupyterlab ~=3.0
jupyterlab-git >=0.30.0,<0.50.0
packages = find:
include_package_data = True
zip_safe = False
[options.entry_points]
jupyterlab_pullrequests.manager_v1 =
github = jupyterlab_pullrequests:get_github_manager
gitlab = jupyterlab_pullrequests:get_gitlab_manager [gitlab]
[options.extras_require]
gitlab =
diff-match-patch
test =
%(gitlab)s
flaky
mock>=4.0.0
pytest
pytest-asyncio
pytest-tornasync
coverage =
%(test)s
codecov
pytest-cov
dev =
%(coverage)s
twine