-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1.17 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
[project]
name = "logmuse"
version = "0.3.0"
description = "Logging setup"
readme = "README.md"
license = "BSD-2-Clause"
requires-python = ">=3.10"
authors = [
{ name = "Vince Reuter" },
{ name = "Nathan Sheffield" },
]
keywords = ["logging", "workflow", "logger", "logs"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"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 :: Bio-Informatics",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/databio/logmuse"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
test = [
"pytest",
"hypothesis",
]
[tool.pytest.ini_options]
addopts = "-rfE"
testpaths = ["tests"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["F403", "F405", "E501"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["E741", "E731"]
[tool.ruff.lint.isort]
known-first-party = ["logmuse"]