-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
37 lines (34 loc) · 924 Bytes
/
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
[metadata]
author = Tyson Smith
author_email = [email protected]
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Programming Language :: Python :: 3
Topic :: Software Development :: Testing
description = A tool that enables page interactions via instructions.
keywords = automation testing
license = MPL 2.0
long_description = file: README.md
long_description_content_type = text/markdown
maintainer = Mozilla Fuzzing Team
maintainer_email = [email protected]
name = page-explorer
url = https://github.com/MozillaSecurity/page-explorer
[options]
include_package_data = True
install_requires =
selenium
package_dir =
= src
packages =
page_explorer
python_requires = >=3.9
zip_safe = False
[options.entry_points]
console_scripts =
page-explorer = page_explorer.main:main
[options.extras_require]
dev =
pre-commit
tox