-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
52 lines (43 loc) · 1.11 KB
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
44
45
46
47
48
49
50
51
52
[project]
name = "metar"
description = "Metar - a package to parse METAR-coded weather reports"
authors = [
]
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">= 3.10"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = []
[tool.setuptools]
packages = ["metar"]
[tool.setuptools.package-data]
metar = ["nsd_cccc.txt", "py.typed", "*.pyi"]
[tool.setuptools_scm]
version_scheme = "post-release"
write_to = "metar/_version.py"
[project.urls]
Repository = "https://github.com/python-metar/python-metar/"
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
tests = [
"pytest"
]
codecov = [
"pytest-cov",
"pytest",
"codecov",
]
typing = [
"mypy==1.3.0",
]