-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
38 lines (35 loc) · 1.01 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
[metadata]
author = Tyson Smith
author_email = twsmith@mozilla.com
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 Python module that aids in the automation of Firefox at the process level
keywords = automation firefox fuzz fuzzing security test testing
license = MPL 2.0
long_description = file: README.md
long_description_content_type = text/markdown
maintainer = Mozilla Fuzzing Team
maintainer_email = fuzzing@mozilla.com
name = ffpuppet
url = https://github.com/MozillaSecurity/ffpuppet
[options]
include_package_data = True
install_requires =
psutil >= 5.9.0
xvfbwrapper >= 0.2.9; sys_platform == "linux" or sys_platform == "linux2"
package_dir =
= src
packages =
ffpuppet
python_requires = >=3.9
zip_safe = False
[options.entry_points]
console_scripts =
ffpuppet = ffpuppet.main:main
[options.extras_require]
dev =
pre-commit
tox