-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.2 KB
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=65" ]
[project]
name = "wordfence"
authors = [
{ name = "Wordfence", email = "[email protected]" }
]
maintainers = [
{ name = "Wordfence", email = "[email protected]" }
]
description = "Command-line malware scanner powered by Wordfence"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Security"
]
dependencies = [
"packaging>=21.0",
"requests>=2.3"
]
dynamic = [ "version" ]
[tool.setuptools.packages.find]
include = [ "wordfence*" ]
[tool.setuptools.dynamic]
version = { attr = "wordfence.version.__version__" }
[project.urls]
Homepage = "https://www.wordfence.com/products/wordfence-cli/"
Documentation = "https://www.wordfence.com/help/wordfence-cli/"
Repository = "https://github.com/wordfence/wordfence-cli"
[project.scripts]
wordfence = "wordfence.cli.cli:main"