-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
40 lines (33 loc) · 999 Bytes
/
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
[project]
name = "trollsift"
description = "String parser/formatter"
readme = "README.rst"
authors = [
{ name = "The Pytroll Team", email = "[email protected]" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
keywords = ["string parsing", "string formatting", "pytroll"]
requires-python = ">=3.9"
dependencies = []
dynamic = ["version"]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["trollsift"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "trollsift/version.py"
[tool.coverage.run]
relative_files = true
omit = ["trollsift/version.py"]