generated from palewire/python-open-source-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.09 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
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "nws-aurora"
dynamic = ["version"]
authors = [
{ name="Ben Welsh", email="b@palewi.re" },
]
description = "Download forecast data for Aurora Borealis and Aurora Australis from the National Weather Service"
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"pytz",
"bs4",
"requests",
"geojson",
"click",
'exceptiongroup; python_version<"3.11"',
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
]
[project.scripts]
nwsaurora = "nws_aurora.cli:cmd"
[project.urls]
Homepage = "https://github.com/palewire/nws-aurora/"
Issues = "https://github.com/palewire/nws-aurora/issues"
[tool.setuptools]
packages = ["nws_aurora"]
[tool.setuptools_scm]