-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (65 loc) · 1.65 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
70
71
72
73
74
75
76
77
78
[project]
name = "atom-tools"
version = "0.6.0"
description = "Collection of tools for use with AppThreat/atom."
authors = [
{ name = "Caroline Russell", email = "[email protected]" },
]
dependencies = ["cleo>=1.0.0", "jmespath>=1.0.0", "thefuzz>=0.22.1", "json-flatten>=0.3"]
license = { text = "Apache-2.0" }
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: Utilities",
]
[project.urls]
"Homepage" = "https://github.com/appthreat/atom-tools"
"Bug Tracker" = "https://github.com/appthreat/atom-tools/issues"
[project.scripts]
atom-tools = "atom_tools.cli.application:main"
[project.entry-points."console_scripts"]
atom-tools = "atom_tools.cli.application:main"
[project.optional-dependencies]
dev = [
"coverage",
"flake8",
"isort",
"mypy",
"pre-commit",
"pylint",
"pytest",
"tox",
]
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"atom_tools",
"atom_tools.cli",
"atom_tools.cli.commands",
"atom_tools.lib"
]
include-package-data = true
[tool.black]
line-length = 99
[tool.isort]
profile = "black"
[tool.pylint]
ignore-long-lines = "[r|f][\"']"
[tool.pylint.design]
max-args = 6
[tool.pylint.format]
max-line-length = 99
[tool.pylint.logging]
logging-format-style = "new"
[tool.pylint.messages_control]
disable = "W1203,R0903,E0401"