-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 1023 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
36
37
38
39
40
41
42
[project]
name = "felling"
version = "0.1.6"
description = "A simple package to easily create consistent logs"
authors = [{ name = "Josh Kirk", email = "[email protected]" }]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
keywords = ["logging", "logs", "log"]
url="https://felling.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
]
[project.urls]
Source = "https://github.com/this-josh/felling"
Tracker = "https://github.com/this-josh/felling/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
include = ["**/*.json"]
dev-dependencies = [
"pytest>=8.3.3",
"pytest-mock>=3.14.0",
"ruff>=0.6.5",
"flake8>=7.1.1",
"coverage>=7.6.1",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/felling"]