-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (31 loc) · 1.16 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
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[project]
name = "printf-log-formatter"
description = "Convert logger f-strings and str.format syntax to printf-style strings"
readme = "README.md"
authors = [{ name = "Sondre Lillebø Gundersen", email = "[email protected]" }]
license = { file = "LICENSE" }
requires-python = ">=3.7"
dependencies = []
keywords = ["linter", "formatter", "logging", "sentry"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Rust",
]
[project.urls]
Repository = "https://github.com/snok/printf-log-formatter"
Changelog = "https://github.com/snok/printf-log-formatter/releases"