-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.7 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
[tool.poetry]
name = "firmitas"
version = "0.1.5a0"
description = "Simple notification service for X.509-standard TLS certificate statuses"
authors = ["Akashdeep Dhar <[email protected]>"]
license = "GPL-3.0-or-later"
maintainers = ["Akashdeep Dhar <[email protected]>"]
readme = "README.md"
homepage = "https://gitlab.com/t0xic0der/firmitas/"
repository = "https://gitlab.com/t0xic0der/firmitas/"
documentation = "https://gitlab.com/t0xic0der/firmitas/-/blob/main/README.md"
keywords = ["notification", "security", "certificate"]
classifiers= [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Operating System",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Monitoring",
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
click = ">=8.0.0,<9"
cryptography = ">=36.0.0"
pyyaml = ">=5.0.0,<7"
requests = ">=2.20.0,<3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3 || ^8.0.0"
pytest-cov = "^4.1.0 || ^5.0.0 || ^6.0.0"
ruff = "^0.2.0 || ^0.3.0 || ^0.5.0 || ^0.6.0 || ^0.7.0 || ^0.8.0 || ^0.9.0"
tox = "^4.0.0"
vcrpy = "^5.1.0 || ^6.0.0 || ^7.0.0"
pytest-recording = "^0.13.0"
[tool.ruff]
line-length = 100
fix = true
[tool.ruff.lint]
select = ["E", "F", "W", "I", "S", "B", "UP"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
firmitas = "firmitas.main:main"