From 3d102b22a2e8fbd697a5946e6a0f4b02f4e234d5 Mon Sep 17 00:00:00 2001 From: Bauke Date: Mon, 25 Oct 2021 16:01:58 +0200 Subject: [PATCH] Add readme and repository fields --- opyml/__init__.py | 2 +- pyproject.toml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/opyml/__init__.py b/opyml/__init__.py index f2ab945..95db13c 100644 --- a/opyml/__init__.py +++ b/opyml/__init__.py @@ -7,7 +7,7 @@ from .head import Head from .opml import OPML from .outline import Outline -__version__ = "0.1.0" +__version__ = "0.1.1" # Export everything at the top-level. __all__ = [ diff --git a/pyproject.toml b/pyproject.toml index 3735d94..0aa7f0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,11 @@ [tool.poetry] name = "opyml" license = "MIT OR Apache-2.0" -version = "0.1.0" +version = "0.1.1" description = "An OPML library for Python." authors = ["Holllo "] +readme = "README.md" +repository = "https://github.com/Holllo/opyml" [tool.poetry.dependencies] defusedxml = "^0.7.1"