add js package

This commit is contained in:
Chang She
2023-03-17 19:15:05 -07:00
parent 7eb56eccb7
commit 8800c0129f
2 changed files with 19 additions and 0 deletions

44
python/pyproject.toml Normal file
View File

@@ -0,0 +1,44 @@
[project]
name = "lancedb"
version = "0.0.1"
dependencies = ["pylance"]
description = "lancedb"
authors = [
{ name = "Lance Devs", email = "dev@eto.ai" },
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
keywords = [
"data-format",
"data-science",
"machine-learning",
"arrow",
"data-analytics"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
[project.urls]
repository = "https://github.com/eto-ai/lancedb"
[project.optional-dependencies]
tests = [
"pytest",
]
[build-system]
requires = ["setuptools"]