-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.27 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
[tool.poetry]
name = "pylint-actions"
version = "0.5.0"
description = "Pylint plugin for GitHub Actions"
license = "MIT"
homepage = "https://github.com/skhomuti/pylint-actions"
repository = "https://github.com/skhomuti/pylint-actions"
keywords = ["pylint", "github", "actions", "linter", "static code analysis", "python"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
]
authors = ["skhomuti <[email protected]>"]
readme = "README.md"
packages = [
{include = "pylint_actions"},
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
pylint = "^3.0.3"
[tool.poetry.group.dev.dependencies]
pylint = "^3.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.main]
load-plugins = "pylint_actions"