-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.13 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
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
authors = [
]
description = "Python interface to the Sectigo Certificate Manager REST API"
dynamic = [ "dependencies" ]
keywords = ["sectigo", "comodo", "certificate"]
license = { text = "BSD-3-Clause" }
name = "cert_manager"
readme = "README.md"
requires-python = ">=3.9,<4.0.0"
version = "2.4.0"
[project.urls]
homepage = "https://github.com/broadinstitute/python-cert_manager.git"
repository = "https://github.com/broadinstitute/python-cert_manager.git"
[tool.poetry.dependencies]
requests = "^2.32.3"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
bump2version = "^1.0.1"
coverage = "^7.6.10"
fixtures = "^4.2.2"
mock = "^5.1.0"
responses = "^0.25.3"
testtools = "^2.7.2"
yamllint = "^1.35.1"
pytest = "^8.3.4"
[tool.ruff]
fixable = ["ALL"]
line-length = 120
select = [
"D", # pydocstyle
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"PL", # Pylint
"UP", # pyupgrade
]
[tool.ruff.pydocstyle]
convention = "google"