Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Aoi-Takahashi committed Mar 4, 2024
0 parents commit 486b0f8
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.11.6
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# pm-kun

Describe your project here.
27 changes: 27 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[project]
name = "pm-kun"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Aoi-Takahashi", email = "[email protected]" }
]
dependencies = []
readme = "README.md"
requires-python = ">= 3.8"

[project.scripts]
start = "pm_kun:main"

[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/pm_kun"]
10 changes: 10 additions & 0 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# generated by rye
# use `rye lock` or `rye sync` to update this lockfile
#
# last locked with the following flags:
# pre: false
# features: []
# all-features: false
# with-sources: false

-e file:.
10 changes: 10 additions & 0 deletions requirements.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# generated by rye
# use `rye lock` or `rye sync` to update this lockfile
#
# last locked with the following flags:
# pre: false
# features: []
# all-features: false
# with-sources: false

-e file:.
3 changes: 3 additions & 0 deletions src/pm_kun/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
def main() -> int:
print("Hello from pm-kun!")
return 0
4 changes: 4 additions & 0 deletions src/pm_kun/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import pm_kun
import sys

sys.exit(pm_kun.main())

0 comments on commit 486b0f8

Please sign in to comment.