-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.38 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
45
46
47
[project]
name = "fixinventory-plugin-aws"
version = "4.2.0"
authors = [{name="Some Engineering Inc."}]
description = "Runs collector plugins and sends the result to fixcore."
license = { text="AGPLv3" }
requires-python = ">=3.12"
classifiers = [
# Current project status
"Development Status :: 5 - Production/Stable",
# Audience
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
# License information
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
# Supported python versions
"Programming Language :: Python :: 3.12",
# Supported OS's
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
# Extra metadata
"Environment :: Console",
"Natural Language :: English",
"Topic :: Security",
"Topic :: Utilities",
]
readme = {file="README.md", content-type="text/markdown"}
dependencies = [
"fixinventorylib==4.2.0",
"fixinventorydata",
"retrying",
"boto3",
"botocore",
"cloudsplaining",
]
[project.entry-points."fix.plugins"]
aws = "fix_plugin_aws:AWSCollectorPlugin"
[project.urls]
Documentation = "https://inventory.fix.security"
Source = "https://github.com/someengineering/fix/tree/main/plugins/aws"
[build-system]
requires = ["setuptools>=67.8.0", "wheel>=0.40.0", "build>=0.10.0"]
build-backend = "setuptools.build_meta"