Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Loopia Python Library

[![Documentation Status](https://app.readthedocs.org/projects/loopiase-python/badge/?version=latest)](https://loopiase-python.readthedocs.io/en/latest/)
[![Coverage Status](https://coveralls.io/repos/github/DigitalTolk/loopiase-python/badge.svg?branch=feature/add-github-actions)](https://coveralls.io/github/DigitalTolk/loopiase-python?branch=feature/add-github-actions)
[![Coverage Status](https://coveralls.io/repos/github/DigitalTolk/loopiase-python/badge.svg)](https://coveralls.io/github/DigitalTolk/loopiase-python)

Python client library for the [Loopia](https://www.loopia.se) domain registrar API.

Expand Down Expand Up @@ -62,4 +62,4 @@ make docs # build Sphinx documentation

## License

GPL-3.0
GPL-3.0-or-later
9 changes: 3 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "loopiase"
version = "0.0.1"
description = "Python client library for the Loopia API"
readme = "README.md"
license = "GPL-3.0-only"
license = "GPL-3.0-or-later"
requires-python = ">=3.10"

[project.optional-dependencies]
Expand All @@ -23,9 +23,6 @@ dev = [
[project.urls]
Homepage = "https://github.com/DigitalTolk/loopiase-python"

[tool.setuptools.packages.find]
where = ["src"]

[tool.pytest.ini_options]
testpaths = ["tests"]

Expand Down
Loading