-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a0b3a9
commit 59a7049
Showing
9 changed files
with
22 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# service-monitor | ||
Service monitor for Linux and macOS | ||
# PyNinja | ||
Light weight OS agnostic service monitoring API |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[project] | ||
name = "PyNinja" | ||
dynamic = ["version", "dependencies"] | ||
description = "OS agnostic service monitoring API" | ||
description = "Light weight OS agnostic service monitoring API" | ||
readme = "README.md" | ||
authors = [{ name = "Vignesh Rao", email = "[email protected]" }] | ||
license = { file = "LICENSE" } | ||
|
@@ -12,31 +12,32 @@ classifiers = [ | |
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX :: Linux", | ||
"Topic :: System :: Monitoring", | ||
] | ||
keywords = ["service-monitor"] | ||
keywords = ["service-monitor", "PyNinja"] | ||
requires-python = ">=3.10" | ||
|
||
[tool.setuptools] | ||
packages = ["monitor"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "monitor.version"} | ||
version = {attr = "pyninja.version"} | ||
dependencies = { file = ["requirements.txt"] } | ||
|
||
[project.optional-dependencies] | ||
dev = ["sphinx==5.1.1", "pre-commit", "recommonmark", "gitverse"] | ||
|
||
[project.scripts] | ||
# sends all the args to commandline function, where the arbitary commands as processed accordingly | ||
monitor = "monitor:commandline" | ||
pyninja = "pyninja:commandline" | ||
|
||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/thevickypedia/service-monitor" | ||
Docs = "https://thevickypedia.github.io/service-monitor" | ||
Source = "https://github.com/thevickypedia/service-monitor" | ||
"Bug Tracker" = "https://github.com/thevickypedia/service-monitor/issues" | ||
"Release Notes" = "https://github.com/thevickypedia/service-monitor/blob/main/release_notes.rst" | ||
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" |