-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add poetry script to publish in PyPI. #25
- Loading branch information
1 parent
b94f0ab
commit 7ed2e7a
Showing
2 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[tool.poetry] | ||
name = "nginxfmt" | ||
version = "1.2.1" | ||
description = "nginx config file formatter with no additional dependencies." | ||
authors = ["Michał Słomkowski"] | ||
license = "Apache 2.0" | ||
readme = "README.md" | ||
homepage = "https://github.com/slomkowski/nginx-config-formatter" | ||
repository = "https://github.com/slomkowski/nginx-config-formatter" | ||
keywords = ["nginx", "formatter"] | ||
include = [ | ||
"LICENSE", | ||
] | ||
|
||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.4" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
||
[tool.poetry.scripts] | ||
nginxfmt = "nginxfmt:main" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |