-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
67 lines (63 loc) · 2.22 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]
name = robotframework-jupyterlibrary
version = file: src/JupyterLibrary/VERSION
description = A Robot Framework library for automating (testing of) Jupyter end-user applications and extensions
python_requires = >=3.7
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/robots-from-jupyter/robotframework-jupyterlibrary
project_urls =
Bug Tracker = https://github.com/robots-from-jupyter/robotframework-jupyterlibrary/issues
Changelog = https://github.com/robots-from-jupyter/robotframework-jupyterlibrary/blob/master/docs/HISTORY.ipynb
CI = https://github.com/robots-from-jupyter/robotframework-jupyterlibrary/actions
Documentation = https://robotframework-jupyterlibrary.readthedocs.io/en/stable
Releases = https://github.com/robots-from-jupyter/robotframework-jupyterlibrary/releases
Source Code = https://github.com/robots-from-jupyter/robotframework-jupyterlibrary
author = Robots from Jupyter
author_email = [email protected]
license = BSD-3-Clause
license-file = LICENSE
description-file = README.md
keywords =
Interactive
Jupyter
notebook
Testing
Web
classifiers =
Framework :: Jupyter
Framework :: Jupyter :: JupyterLab
Framework :: Jupyter :: JupyterLab :: 1
Framework :: Jupyter :: JupyterLab :: 2
Framework :: Jupyter :: JupyterLab :: 3
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
[options]
install_requires =
robotframework >=3.2
robotframework-seleniumlibrary >=4.5
package_dir =
= src
packages = find:
include_package_data = True
zip_safe = False
[options.packages.find]
where =
src
[flake8]
exclude = .git,__pycache__,envs
max-complexity = 10
max-line-length = 88
ignore = E203,W503
[isort]
lines_after_imports = 2
line_length = 88