-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kp-alert"
version = "0.1.0"
description = "A Python-based monitoring system that tracks the Kp geomagnetic index from GFZ Potsdam and sends automated email alerts"
readme = "README.md"
authors = [
{ name = "Sahil Jhawar, Infant Ronald Reagan Johnson Amalraj", email = "jhawar@gfz.de" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["space weather", "kp index", "geomagnetic", "monitoring", "alerts"]
requires-python = ">=3.11"
dynamic = ["dependencies"]
[project.scripts]
kp-alert = "src.kp_index_monitor:app"
[project.urls]
Homepage = "https://github.com/GFZ/kp_alert"
Repository = "https://github.com/GFZ/kp_alert"
Issues = "https://github.com/GFZ/kp_alert/issues"
[tool.setuptools]
packages = ["src"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }