-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (22 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
27 lines (22 loc) · 822 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
[project]
name = "goes-meso-visualizer"
version = "0.0.0" # this package is not meant for release
authors = [{ name = "Pete Gadomski", email = "pete.gadomski@gmail.com" }]
description = "Visualize GEOS mesoscale data in a browser map"
readme = "README.md"
requires-python = "~=3.11.0"
license = { text = "Apache-2.0" }
dynamic = ["dependencies", "optional-dependencies"]
scripts = { goes-meso-visualizer = "goes_meso_visualizer.cli:cli" }
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = { file = "requirements.txt" }
optional-dependencies = { dev = { file = "requirements-dev.txt" } }
[tool.mypy]
strict = true
[tool.ruff]
include = ["F", "E", "I", "RUF"]
[tool.isort]
profile = "black"