-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.38 KB
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
[tool.poetry]
name = "pid-file-checker"
version = "1.0.1"
description = "Monitor a pid file"
readme = "README.md"
license = "MIT"
authors = ["Gabriel Augendre <gabriel.augendre@itsfactory.fr>"]
maintainers = [
"Gabriel Augendre <gabriel.augendre@itsfactory.fr>",
"Romain Da Costa Vieira <romain.da-costa-vieira@itsfactory.fr>",
"Jason Gallet <jason.gallet@itsfactory.fr>",
"Jean-Sébastien Heitz-Schaaf <jean-sebastien.heitz-schaaf@itsfactory.fr>",
"Emilio Staropoli <emilio.staropoli@itsfactory.fr>",
]
homepage = "https://github.com/itsolutionsfactory/pid-file-checker"
repository = "https://github.com/itsolutionsfactory/pid-file-checker"
keywords = [
"pid",
"daemon",
"monitoring",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.7"
psutil = ">=5.8.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pre-commit = "^2.9.3"
[tool.poetry.scripts]
pfc = 'pid_file_checker.checker:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py37']
[tool.isort]
profile = "black"