-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (31 loc) · 879 Bytes
/
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "tiny-json-log"
version = "0.1.0"
description = "Compact/easy to use json formatter"
authors = ["gramal"]
readme = "README.md"
repository = "https://github.com/ggramal/tiny-json-log"
homepage = "https://github.com/ggramal/tiny-json-log"
license = "MIT"
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{ include = "tiny_json_log" },
]
[tool.poetry.dependencies]
python = ">=3.8"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.0"
black = "^24.8.0"
[[tool.poetry.source]]
name = "pypi"
priority = "primary"