Skip to content

Commit

Permalink
a bit of configs cleanup, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
niksite committed May 5, 2020
1 parent f0fb7bc commit 485cd46
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Type "help", "copyright", "credits" or "license" for more information.

History:

* 1.4.2: Added an optional param sort_query_params (True by default)
* 1.4.1: Added an optional param default_scheme to the url_normalize
* 1.4.0: A bit of code refactoring and cleanup
* 1.3.3: Support empty string and double slash urls (//domain.tld)
Expand Down
21 changes: 12 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
[tool.poetry]
name = "url-normalize"
version = "1.4.1"
description = "URL normalization for Python"
authors = ["Nikolay Panov <[email protected]>"]
license = "PSF"
readme = "README.md"
repository = "https://github.com/niksite/url-normalize"
description = "URL normalization for Python"
homepage = "https://github.com/niksite/url-normalize"
keywords = ['url', 'normalization', 'normalize']
urls = { Changelog = "https://github.com/niksite/url-normalize#url-normalize" }
license = "PSF-2.0"
name = "url-normalize"
readme = "README.md"
repository = "https://github.com/niksite/url-normalize"
version = "1.4.2"

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/niksite/url-normalize/issues"
"Changelog" = "https://github.com/niksite/url-normalize#url-normalize"

[tool.poetry.dependencies]
python = "~2.7 || ^3.6"
Expand All @@ -17,10 +20,10 @@ six = "^1.11"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
pytest-cov = "^2.6"
tox = "^3.5"
pytest-flakes = "^4.0"
pytest-socket = "^0.3.1"
tox = "^3.5"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]

0 comments on commit 485cd46

Please sign in to comment.