Skip to content

Commit

Permalink
PEP 621
Browse files Browse the repository at this point in the history
  • Loading branch information
geminixiang committed Jan 6, 2025
1 parent b451ec1 commit 6b71560
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 8 deletions.
45 changes: 43 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 9 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
[tool.poetry]
[project]
name = "pr-lint"
version = "0.1.0"
description = ""
authors = ["lucemia <lucemia@gmail.com>"]
authors = [
{ name = "lucemia", email = "lucemia@gmail.com" },
]
readme = "README.md"

[project.scripts]
pr-lint = "pr_lint.main:app"

[tool.poetry]
packages = [{ include = "pr_lint", from = "src" }]
include = ["pr_lint/py.typed"]
exclude = ["**/tests"]
Expand All @@ -28,7 +35,3 @@ pattern = "default-unprefixed"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"


[tool.poetry.scripts]
pr-lint = "pr_lint.main:app"

0 comments on commit 6b71560

Please sign in to comment.