forked from gadomski/pyisd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 795 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 795 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
29
[project]
name = "isd"
version = "0.3.0"
description = "Reads and archives NOAA Integrated Surface Database (ISD) files"
readme = "README.md"
authors = [{ name = "Pete Gadomski", email = "pete.gadomski@gmail.com" }]
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = ["click~=8.0", "pandas~=1.3"]
[project.scripts]
isd = "isd.cli:main"
[project.optional-dependencies]
dev = ["mypy~=1.2", "pre-commit~=3.2", "pytest~=8.0", "ruff~=0.3.0"]
examples = ["tqdm~=4.66"]
docs = ["sphinx~=7.2"]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.mypy]
strict = true