From 485cd46a3f49f324175cdf6429a4a45c0397a6d5 Mon Sep 17 00:00:00 2001 From: Nikolay Panov Date: Tue, 5 May 2020 09:30:07 -0700 Subject: [PATCH] a bit of configs cleanup, version bump --- README.md | 1 + pyproject.toml | 21 ++++++++++++--------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index cdea319..096dbff 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/pyproject.toml b/pyproject.toml index a001a12..780cc2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,14 +1,17 @@ [tool.poetry] -name = "url-normalize" -version = "1.4.1" -description = "URL normalization for Python" authors = ["Nikolay Panov "] -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" @@ -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"]