From 9cbc93655bd442807cc1431a6ff3ba3ea8e94c0b Mon Sep 17 00:00:00 2001 From: Daniel Bluhm Date: Thu, 22 Dec 2022 15:27:02 -0500 Subject: [PATCH] chore: bump verison, minor cleanup of pyproject.toml Signed-off-by: Daniel Bluhm --- pyproject.toml | 45 ++++++++++++++++++--------------------------- 1 file changed, 18 insertions(+), 27 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b5bf273..7e9412c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,37 +1,20 @@ -[tool.black] - -[tool.flake8] -# https://github.com/ambv/black#line-length -max-line-length = 90 -exclude = "*/tests/**" -extend_ignore = "D202, W503" -per_file_ignores = "*/__init__.py:D104" - -[tool.pytest.ini_options] -addopts = "-p no:warnings --cov pydid" -markers = "int: integration tests" - -[tool.coverage.report] -exclude_lines = [ - "pragma: no cover", - "@abstract" -] -precision = 2 -show_missing = true - [tool.poetry] name = "pydid" -version = "0.3.6" +version = "0.3.7" description = "Python library for validating, constructing, and representing DIDs and DID Documents" authors = ["Daniel Bluhm "] license = "Apache 2.0" readme = "README.md" -homepage = "https://github.com/dbluhm/pydid" -repository = "https://github.com/dbluhm/pydid" +homepage = "https://github.com/Indicio-tech/pydid" +repository = "https://github.com/Indicio-tech/pydid" keywords = [ "decentralized", "identity", "ssi" ] +[build-system] +requires = ["setuptools", "poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" + [tool.poetry.dependencies] python = "^3.6.9" pydantic = "^1.8.1" @@ -49,6 +32,14 @@ aiohttp = "^3.7.4" pytest-asyncio = "^0.14.0" coverage = {extras = ["toml"], version = "^5.5"} -[build-system] -requires = ["setuptools", "poetry-core>=1.0.0"] -build-backend = "poetry.core.masonry.api" +[tool.pytest.ini_options] +addopts = "-p no:warnings --cov pydid" +markers = "int: integration tests" + +[tool.coverage.report] +exclude_lines = [ + "pragma: no cover", + "@abstract" +] +precision = 2 +show_missing = true