-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.02 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "metplotpy"
dynamic = ["version"] #, "dependencies"]
description = "plotting package for METplus"
authors = [
{name = "METplus"},
]
requires-python = ">=3.10.4"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/dtcenter/METplotpy"
[tool.setuptools.dynamic]
version = {attr = "metplotpy.__version__"}
#dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages]
find = {include = ["metplotpy*"]}
[tool.setuptools.package-data]
metplotpy = [
"plots/config/**",
]
[tool.pytest.ini_options]
testpaths = ["test"]
[tool.coverage.run]
source = ["metplotpy/plots"]
omit = [
"config.py",
"config-3.py",
]
relative_files = true
[tool.coverage.report]
exclude_also = [
"def __repr__",
"if __name__ == .__main__.:",
]