forked from equinor/komodo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
98 lines (92 loc) · 2.88 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["setuptools>=65.0", "setuptools-scm>=7.0"]
build-backend = "setuptools.build_meta"
[project]
name = "komodo"
authors = [{ name="Equinor ASA", email="[email protected]" },]
description = "Komodo is a software distribution system."
dynamic = ["version"]
requires-python = ">=3.8"
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
dependencies = [
"jinja2",
"packaging",
"PyGithub >= 1.55",
"pysnyk",
"PyYAML",
"requests",
"ruamel.yaml",
"shell",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools_scm]
write_to = "komodo/_version.py"
[project.scripts]
kmd = "komodo.cli:cli_main"
komodo-check-pypi = "komodo.check_up_to_date_pypi:main"
komodo-check-symlinks = "komodo.symlink.sanity_check:sanity_main"
komodo-clean-repository = "komodo.release_cleanup:main"
komodo-create-symlinks = "komodo.symlink.create_links:symlink_main"
komodo-extract-dep-graph = "komodo.extract_dep_graph:main"
komodo-insert-proposals = "komodo.insert_proposals:main"
komodo-lint = "komodo.lint:lint_main"
komodo-lint-maturity = "komodo.lint_maturity:main"
komodo-lint-package-status = "komodo.lint_package_status:main"
komodo-non-deployed = "komodo.deployed:deployed_main"
komodo-post-messages = "komodo.post_messages:main"
komodo-reverse-deps = "komodo.reverse_dep_graph:main"
komodo-show-version = "komodo.show_version:main"
komodo-snyk-test = "komodo.snyk_reporting:main"
komodo-suggest-symlinks = "komodo.symlink.suggester.cli:main"
komodo-transpiler = "komodo.release_transpiler:main"
[tool.isort]
profile = "black"
[tool.pylint.messages_control]
disable = [
"bad-inline-option",
"consider-using-dict-items",
"consider-using-f-string",
"consider-using-sys-exit",
"consider-using-with",
"deprecated-pragma",
"duplicate-code",
"file-ignored",
"fixme",
"invalid-name",
"line-too-long",
"locally-disabled",
"logging-not-lazy",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"no-else-return",
"protected-access",
"raise-missing-from",
"raw-checker-failed",
"redefined-outer-name",
"suppressed-message",
"too-few-public-methods",
"too-many-arguments",
"too-many-branches",
"too-many-locals",
"too-many-statements",
"unnecessary-lambda",
"unspecified-encoding",
"unused-argument",
"use-a-generator",
"use-implicit-booleaness-not-comparison",
"use-symbolic-message-instead",
"useless-object-inheritance",
]