-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (88 loc) · 2.44 KB
/
pyproject.toml
File metadata and controls
103 lines (88 loc) · 2.44 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 77.0.3",
]
[project]
name = "larray_eurostat"
version = "0.35.2"
description = "Additional package to import Eurostat files using LArray"
readme = { file = "README.rst", content-type = "text/x-rst" }
authors = [
{name = "Geert Bryon"},
{name = "Gaetan de Menten", email = "gdementen@gmail.com"},
{name = "Alix Damman", email = "ald@plan.be"},
{name = "Yannick Van den Abbeel"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
license = 'GPL-3.0-only'
license-files = ["LICENSE"]
requires-python = ">=3.9"
dependencies = [
"larray",
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
Homepage = "https://github.com/larray-project/larray_eurostat"
Repository = "https://github.com/larray-project/larray_eurostat"
Issues = "https://github.com/larray-project/larray_eurostat/issues"
[tool.setuptools.packages.find]
where = ["."]
namespaces = false
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"larray_eurostat"
]
addopts = [
"-v",
"--doctest-modules",
# "--cov",
]
filterwarnings = [
# turn warnings into errors (unless they are explicitly handled in tests or ignored here)
"error",
]
[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = [
".eggs",
".git",
".ruff_cache",
".venv",
"__pypackages__",
"build",
"dist",
"experiments",
]
line-length = 120
[tool.ruff.lint]
# Enable Pyflakes `E` and `F` codes by default.
select = ["E", "F"]
ignore = []
# Allow autofix for all enabled rules (when `--fix`) is provided.
# fixable = ["A", "B", "C", "D", "E", "F", "..."]
# unfixable = []
[tool.ruff.lint.per-file-ignores]
"*\\tests\\test_*" = [
"S101", # allow using assert in test functions
"D103" # do not require docstrings for test functions
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"