-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 1.03 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
[build-system]
requires = [
"setuptools >= 77.0.3",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "metar-taf-parser-mivek"
version = "1.9.0"
description = "Python project parsing metar and taf message"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Jean-Kevin KPADEY", email = "jeankevin.kpadey@gmail.com" }
]
keywords = ["metar", "taf", "parser", "icao", "airport"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
[project.urls]
"Homepage" = "https://github.com/mivek/python-metar-taf-parser"
"Bug Tracker" = "https://github.com/mivek/python-metar-taf-parser/issues"
[project.optional-dependencies]
tests = ["parameterized", "coverage"]
[tool.setuptools.packages.find]
exclude = ["metar_taf_parser.tests.common", "metar_taf_parser.tests.command", "metar_taf_parser.tests.parser", "metar_taf_parser.tests"]
[tool.setuptools.package-data]
"*" = ["locale/*/*/*.po", "locale/*/*/*.mo", "locale/*.pot"]