diff --git a/Ctl/VERSION b/Ctl/VERSION index f6e09b8..9dbb0c0 100644 --- a/Ctl/VERSION +++ b/Ctl/VERSION @@ -1 +1 @@ -1.6.1.1 \ No newline at end of file +1.7.0 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 0e8b5af..079f687 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,53 +1,35 @@ +[build-system] +requires = [ "poetry-core>=1.0.0",] +build-backend = "poetry.core.masonry.api" + [tool.poetry] name = "confu" repository = "https://github.com/20c/confu" -version = "1.6.1" +version = "1.7.0" description = "Configuration file validation and generation" -authors = ["20C "] +authors = [ "20C ",] license = "Apache-2.0" +classifiers = [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",] -classifiers = [ - "Development Status :: 5 - Production/Stable", - "License :: OSI Approved :: Apache Software License", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", -] - - +[tool.isort] +profile = "black" +multi_line_output = 3 [tool.poetry.dependencies] python = ">=3.6,<4.0" - -# docs -markdown-include= ">=0.5,<1" +markdown-include = ">=0.5,<1" mkdocs = ">=1.0.0,<2.0.0" pymdgen = "<2" - - [tool.poetry.dev-dependencies] -# tests pytest = ">=5,<6" pytest-cov = ">=2.3.1,<3.0" tox = ">=3.0,<4.0" click = ">=7,<8" - -# linting bandit = "^1.6.2" black = "^20.8b1" isort = "^5.7.0" flake8 = "^3.8.4" -# docs [tool.poetry.extras] -docs = ["mark-down-include", "mkdocs", "pymdgen"] - -[tool.isort] -profile = "black" -multi_line_output = 3 - -[build-system] -requires = ["poetry-core>=1.0.0"] -build-backend = "poetry.core.masonry.api" +docs = [ "mark-down-include", "mkdocs", "pymdgen",]