From 7d622b872eb51ddca2534306d27765bb94e39648 Mon Sep 17 00:00:00 2001 From: Jayden Rasband <66230914+jrasband-dev@users.noreply.github.com> Date: Mon, 2 Dec 2024 20:59:09 -0700 Subject: [PATCH] Updated pyproject.toml Fixed issue resulting in Empty Package --- .gitignore | 4 ++-- pyproject.toml | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index d812059..991ba99 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ dist -polars_extensions/polars_extensions.egg-info -__pycache__ \ No newline at end of file +__pycache__ +polars_extensions.egg-info \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index d19240b..a3716ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,12 @@ [project] name = "polars-extensions" -version = "0.2.0" +version = "0.2.1" description = "The Library of Polars Extensions" readme = "README.md" authors = [ {name = "Jayden Rasband", email = "jayden.rasband@gmail.com"} ] license = {text = "MIT"} -requires-python = ">=3.6" classifiers = [] dependencies = [ "polars", @@ -21,4 +20,3 @@ dependencies = [ include-package-data = true [tool.setuptools.packages.find] -where = ["polars_extensions"]