mirror of
https://github.com/kristoferssolo/bunyan-formatter.git
synced 2025-10-21 17:20:35 +00:00
Initial commit
This commit is contained in:
commit
9cd982d835
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
# python generated files
|
||||
__pycache__/
|
||||
*.py[oc]
|
||||
build/
|
||||
dist/
|
||||
wheels/
|
||||
*.egg-info
|
||||
|
||||
# venv
|
||||
.venv
|
||||
1
.python-version
Normal file
1
.python-version
Normal file
@ -0,0 +1 @@
|
||||
3.12.5
|
||||
22
pyproject.toml
Normal file
22
pyproject.toml
Normal file
@ -0,0 +1,22 @@
|
||||
[project]
|
||||
name = "bunyan-formatter"
|
||||
version = "0.1.0"
|
||||
description = "Bunyan Formatter for Python"
|
||||
dependencies = []
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.8"
|
||||
authors = [{ name = "Kristofers Solo", email = "dev@kristofers.xyz" }]
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = []
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/bunyan_formatter"]
|
||||
2
src/bunyan_formatter/__init__.py
Normal file
2
src/bunyan_formatter/__init__.py
Normal file
@ -0,0 +1,2 @@
|
||||
def hello() -> str:
|
||||
return "Hello from bunyan-formatter!"
|
||||
Loading…
Reference in New Issue
Block a user