From 7eb56eccb7f9743b3491c0ef81c8d3b6467128bf Mon Sep 17 00:00:00 2001 From: Chang She <759245+changhiskhan@users.noreply.github.com> Date: Fri, 17 Mar 2023 18:29:10 -0700 Subject: [PATCH] upload wheel --- .gitignore | 4 +++- pyproject.toml | 17 +++++++---------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 723ef36f..271b98f9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -.idea \ No newline at end of file +.idea +**/*.whl +*.egg-info \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 1a640598..06ead89e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [project] name = "lancedb" +version = "0.0.1" dependencies = ["pylance"] description = "lancedb" authors = [ { name = "Lance Devs", email = "dev@eto.ai" }, ] license = { file = "LICENSE" } -repository = "https://github.com/eto-ai/lancedb" readme = "README.md" requires-python = ">=3.8" keywords = [ @@ -16,12 +16,6 @@ keywords = [ "arrow", "data-analytics" ] -categories = [ - "database-implementations", - "data-structures", - "development-tools", - "science" -] classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", @@ -38,10 +32,13 @@ classifiers = [ "Topic :: Scientific/Engineering", ] -[tool.maturin] -python-source = "lancedb" +[project.urls] +repository = "https://github.com/eto-ai/lancedb" [project.optional-dependencies] tests = [ "pytest", -] \ No newline at end of file +] + +[build-system] +requires = ["setuptools"] \ No newline at end of file