-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
69 lines (63 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "fixcompliance"
version = "0.4.36"
authors = [
{ name = "Some Engineering Inc." },
]
description = "Fix Inventory Compliance Benchmarks and Checks"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Environment :: Console",
"Natural Language :: English",
"Topic :: Security",
"Topic :: Utilities",
]
dependencies = []
[project.license]
text = "AGPLv3"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Documentation = "https://inventory.fix.security"
Source = "https://github.com/someengineering/fix/tree/main/fixmetrics"
[pyproject.optional-dependencies]
test = [
"black",
"coverage",
"flake8",
"hypothesis",
"mypy",
"pep8-naming",
"pip-tools",
"pylint",
"pytest",
"pytest-asyncio",
"pytest-cov",
"fixinventoryclient>=2.0.0",
"toml",
"tox",
"types-aiofiles",
]
dev = [
"pip-tools",
"tomli-w",
]
[tool.setuptools.package-data]
fixcompliance = [
"py.typed",
]
[build-system]
requires = [
"setuptools>=67.8.0",
"wheel>=0.40.0",
"build>=0.10.0",
]
build-backend = "setuptools.build_meta"