-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
63 lines (54 loc) · 1.89 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "imap-data-access"
version = "0.10.1"
description = "IMAP SDC Data Access"
authors = [{name = "IMAP SDC Developers", email = "[email protected]"}]
readme = "README.md"
license = {text = "MIT"}
keywords = ["IMAP", "SDC", "SOC", "SDS", "Science Operations"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
[project.scripts]
imap-data-access = "imap_data_access.cli:main"
[project.urls]
homepage = "https://github.com/IMAP-Science-Operations-Center"
repository = "https://github.com/IMAP-Science-Operations-Center/imap-data-access"
[project.optional-dependencies]
dev = ["imap_data_access[test]", "pre-commit", "ruff"]
test = ["pytest", "pytest-cov"]
[tool.setuptools]
packages = ["imap_data_access"]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
addopts = "-ra"
[tool.ruff]
target-version = "py39"
lint.select = ["B", "E", "D", "F", "I", "N", "S", "W", "PL", "PT", "UP", "RUF"]
# D104: Missing docstring in public package
# D203: 1 blank line required before class docstring
# D213: Multi-line docstring summary should start at the second line
# D413: Missing blank line after last section
# PLR2004: Magic value in comparison
lint.ignore = ["D104", "D203", "D213", "D413", "PLR2004"]
[tool.ruff.lint.per-file-ignores]
# S101: Use of assert detected
"tests/*" = ["S101"]