-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.21 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
[project]
name = "readylog"
version = "0.6.1"
description = "Creates a reasonable logging configuration for a Python project"
license = "BSD-2-Clause"
readme = "README.md"
authors = [
{ name = "fleetingbytes", email = "7075397+fleetingbytes@users.noreply.github.com" }
]
requires-python = ">=3.11"
keywords = ["logging", "logging configuration"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
]
dependencies = []
[build-system]
requires = ["uv_build>=0.10.7,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
lint = [
"ruff>=0.15.4",
]
test = [
"pytest>=9",
"watchdog>=6.0.0",
]
[project.urls]
Homepage = "http://github.com/fleetingbytes/readylog"
Documentation = "http://github.com/fleetingbytes/readylog/blob/master/README.md"
Repository = "http://github.com/fleetingbytes/readylog.git"
Issues = "http://github.com/fleetingbytes/readylog/issues"
Changelog = "http://github.com/fleetingbytes/readylog/blob/master/CHANGELOG.md"