-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "PyNinja"
dynamic = ["version", "dependencies"]
description = "Lightweight OS-agnostic service monitoring API"
readme = "README.md"
authors = [{ name = "Vignesh Rao", email = "svignesh1793@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Monitoring",
]
keywords = ["system-monitor", "PyNinja"]
requires-python = ">=3.11"
[tool.setuptools]
packages = [
"pyninja",
"pyninja.routes",
"pyninja.monitor",
"pyninja.modules",
"pyninja.multifactor",
"pyninja.features",
"pyninja.executors",
"pyninja.modules.templates.api",
"pyninja.modules.templates.monitor",
]
[tool.setuptools.package-data]
"pyninja.modules.templates.monitor" = ["*.html"]
"pyninja.modules.templates.api" = ["*.js", "*.html"]
[tool.setuptools.dynamic]
version = { attr = "pyninja.version.__version__" }
dependencies = { file = ["requirements.txt"] }
[project.optional-dependencies]
dev = [
"sphinx",
"pre-commit",
"recommonmark",
"gitverse",
"aiohttp",
"python-dotenv",
"tqdm",
"requests"
]
[project.scripts]
# sends all the args to commandline function, where the arbitary commands as processed accordingly
pyninja = "pyninja:commandline"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/thevickypedia/PyNinja"
Docs = "https://thevickypedia.github.io/PyNinja"
Source = "https://github.com/thevickypedia/PyNinja"
"Bug Tracker" = "https://github.com/thevickypedia/PyNinja/issues"
"Release Notes" = "https://github.com/thevickypedia/PyNinja/blob/main/release_notes.rst"