Skip to content

Commit

Permalink
replace setup.py with pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmatthias committed Mar 28, 2024
1 parent 0e98a70 commit 7e49469
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 123 deletions.
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/python.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# python-logging-loki

[![PyPI version](https://img.shields.io/pypi/v/python-logging-loki.svg)](https://pypi.org/project/python-logging-loki/)
[![Python version](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8-blue.svg)](https://www.python.org/)
[![PyPI version](https://img.shields.io/pypi/v/inuits-python-logging-loki.svg)](https://pypi.org/project/inuits-python-logging-loki/)
[![Python version](https://img.shields.io/badge/python-3.6%20%7C%203.8%20%7C%203.7%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue.svg)](https://www.python.org/)
[![License](https://img.shields.io/pypi/l/python-logging-loki.svg)](https://opensource.org/licenses/MIT)
[![Build Status](https://travis-ci.org/GreyZmeem/python-logging-loki.svg?branch=master)](https://travis-ci.org/GreyZmeem/python-logging-loki)

Expand All @@ -11,7 +11,7 @@ https://grafana.com/loki
# Installation

```bash
pip install python-logging-loki
pip install inuits-python-logging-loki
```

# Usage
Expand Down
28 changes: 27 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# pyproject.toml

[build-system]
requires = ["setuptools >= 40.0.0"]
requires = ["setuptools>=59.6.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "inuits-python-logging-loki"
version = "1.1.2"
description = "Python logging handler for Grafana Loki."
readme = "README.md"
authors = [{ name = "Inuits", email = "[email protected]" }, {name="Andrey Maslov", email="[email protected]"}]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"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",
]
keywords = ["inuits-python-logging-loki", "inuits_python_logging_loki", "python-logging-loki", "python_logging_loki"]
dependencies = ["rfc3339>=6.1", "requests"]

[project.urls]
Homepage = "https://github.com/inuits/python-logging-loki"
19 changes: 0 additions & 19 deletions setup.cfg

This file was deleted.

35 changes: 0 additions & 35 deletions setup.py

This file was deleted.

34 changes: 0 additions & 34 deletions tox.ini

This file was deleted.

0 comments on commit 7e49469

Please sign in to comment.