Skip to content

Commit

Permalink
Readme (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
steveberardi authored Jan 16, 2023
1 parent 03c3ebe commit c60ec30
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# urlz
[![tests](https://github.com/steveberardi/urlz/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/steveberardi/urlz/actions/workflows/test.yml)
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/steveberardi/urlz/test.yml?style=for-the-badge)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/urlz?style=for-the-badge)
![PyPI](https://img.shields.io/pypi/v/urlz?style=for-the-badge)

urlz is a simple URL parsing library that provides Pathlib-like usage to URLs in Python:

Expand Down
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@ name = "urlz"
authors = [{name = "Steve Berardi", email = "hello@steveberardi.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version", "description"]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion src/urlz/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Simple Pathlib-like usage of URLs"""

__version__ = "0.1.1"
__version__ = "0.1.2"

from .urlz import URL, urlify # noqa: F401

0 comments on commit c60ec30

Please sign in to comment.