From 63882fd7e9e3d66b97a8214e77b99376ee704e7a Mon Sep 17 00:00:00 2001 From: SaelKimberly Date: Tue, 6 Feb 2024 12:43:30 +0500 Subject: [PATCH] Hotfix for pyproject.toml * Move urls section down, to the proper position. --- pyproject.toml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3eccf7b..a1863c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,11 +4,6 @@ name = "rxls" version = "0.2.2" description = "Reading both XLSX and XLSB files, fast and memory-safe, into PyArrow." authors = [{ name = "SaelKimberly", email = "sael.kimberly@yandex.ru" }] -[project.urls] -Homepage = "https://github.com/SaelKimberly/rxls" -Documentation = "https://github.com/SaelKimberly/rxls" -Repository = "https://github.com/SaelKimberly/rxls.git" -Issues = "https://github.com/SaelKimberly/rxls/issues" dependencies = [ "recordclass>=0.21.1", @@ -20,6 +15,13 @@ requires-python = ">=3.8" readme = "README.md" license = { text = "MIT" } +[project.urls] +Homepage = "https://github.com/SaelKimberly/rxls" +Documentation = "https://github.com/SaelKimberly/rxls" +Repository = "https://github.com/SaelKimberly/rxls.git" +Issues = "https://github.com/SaelKimberly/rxls/issues" + + [project.optional-dependencies] performance = ["numba>=0.58.1", "tbb>=2021.11.0"] ts_extended = ["polars>=0.20.4"]