-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 744 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 744 Bytes
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
[project]
name = "metoffice-weather-cli"
version = "0.1.2"
authors = [
{ name="corndogit", email="admin@corndogit.dev" },
]
description = "A CLI tool for fetching and printing weather data from the Met Office Weather DataHub API."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies= ["python-dotenv>=1.0.0",]
[project.urls]
"Homepage" = "https://github.com/corndogit/metoffice-weather-cli"
"Bug Tracker" = "https://github.com/corndogit/metoffice-weather-cli/issues"
[project.optional-dependencies]
dev = ["flake8~=6.0.0"]
test = ["pytest~=7.4.0",]
[tool.pytest.ini_options]
pythonpath = [
"."
]