-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (49 loc) · 1.17 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
[project]
name = "jfrog-xray-api"
dynamic = [
"version"
]
authors = [
{ name="Donghui Wang", email="977675308@qq.com" },
]
description = "Python wrapper for JFROG Xray REST API"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
keywords = [
"jfrog",
"xray",
"jfrog-xray",
"devsecops"
]
dependencies = [
"requests"
]
# see https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Topic :: Software Development'
]
[project.optional-dependencies]
pylint = [
"pylint"
]
[project.urls]
homepage = "https://github.com/donhui/jfrog-xray-api"
repository = "https://github.com/donhui/jfrog-xray-api.git"
"Bug Tracker" = "https://github.com/donhui/jfrog-xray-api/issues"
[tool.setuptools.dynamic]
version = {file = ["version.txt"]}
[tool.pylint.format]
max-line-length = 120
[tool.pylint.design]
max-args = 10
[tool.pylint."messages control"]
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
]