-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
49 lines (46 loc) · 1.44 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=75.6"]
build-backend = "setuptools.build_meta"
[project]
name = "metno-locationforecast"
version = "2.1.0"
authors = [{ name = "Rory Sullivan", email = "codingrory@gmail.com" }]
description = "A Python interface for MET Norway's Locationforecast 2.0 service."
readme = "README.md"
requires-python = ">=3.9"
dependencies = ["requests>=2.25.1", "tzdata>=2020.5"]
license = { file = "LICENSE" }
keywords = [
"met",
"metno",
"norway",
"yr",
"locationforecast",
"location",
"forecast",
"weather",
"api",
"python",
"python3",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
]
[project.urls]
Homepage = "https://github.com/Rory-Sullivan/metno-locationforecast"
Source = "https://github.com/Rory-Sullivan/metno-locationforecast"
Issues = "https://github.com/Rory-Sullivan/metno-locationforecast/issues"
[tool.black]
line-length = 100