-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (61 loc) · 1.94 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"ethos_penalps" = ["py.typed"]
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "jsa_data_manager"
version = "0.0.1"
description = "Manages standard input and output data of JSA software tools."
readme = "README.md"
authors = [
{ name = "Julian Belina", email = "[email protected]" },
]
license = { file = "LICENSE.txt" }
dependencies = [
"pandas",
"openpyxl",
"netcdf4",
"xarray",
"pydantic"
]
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
#Configureation options
# https://docs.pytest.org/en/7.1.x/reference/reference.html#configuration-options
[tool.pytest.ini_options]
filterwarnings = [
# "ignore::DeprecationWarning:matplotlib",
] # How to configure Filterwarning:minversion = "6.0"
# https://docs.pytest.org/en/7.1.x/reference/reference.html#confval-pythonpath
testpaths = ["test"] # Sets the path where to look for tests
pythonpath =["test"] # Sets the path which should be prepended to pythonpath relative to the root folder
console_output_style = "count"
# https://docs.python.org/3/library/warnings.html#warning-filter
# action:message:category:module:line
# Ommit a field by add ing ":" for each ommited field
# Actions are: "default"
# "error", "ignore", "always", "module", "once"
markers = [
]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
check_untyped_defs= true
[[tool.mypy.overrides]]
module = ["pandas.*"]
ignore_missing_imports = true
[tool.ruff.lint]
ignore = ["F401"]