2024-09-14 17:05:18 -06:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "goat_monitor"
|
|
|
|
authors = [{ name = "Brendan Haines", email = "brendan.haines@gmail.com" }]
|
|
|
|
description = "Remote monitoring of anything"
|
|
|
|
readme = "README.md"
|
2024-09-14 17:31:23 -06:00
|
|
|
requires-python = ">=3"
|
2024-09-14 17:05:18 -06:00
|
|
|
# keywords = ["one", "two"]
|
|
|
|
license = { text = "MIT License" }
|
|
|
|
classifiers = ["Programming Language :: Python :: 3"]
|
|
|
|
dependencies = ["numpy", "toml", "click", "gotify"]
|
|
|
|
dynamic = ["version"]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
homepage = "https://git.brendanhaines.com/brendanhaines/goat_monitor"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
goat_monitor = "goat_monitor.goat_monitor:main"
|
|
|
|
|
2024-09-14 17:12:54 -06:00
|
|
|
[tool.setuptools_scm]
|
|
|
|
version_file = "goat_monitor/_version.py"
|
2024-09-14 17:05:18 -06:00
|
|
|
|
2024-09-13 19:59:01 -06:00
|
|
|
[tool.black]
|
|
|
|
line-length = 120
|
|
|
|
exclude = '''
|
|
|
|
/(
|
|
|
|
\.eggs
|
|
|
|
| \.git
|
|
|
|
| \.hg
|
|
|
|
| \.mypy_cache
|
|
|
|
| \.tox
|
|
|
|
| \.venv
|
|
|
|
| \.vscode
|
|
|
|
| _build
|
|
|
|
| buck-out
|
|
|
|
| build
|
|
|
|
| dist
|
|
|
|
)/
|
|
|
|
'''
|