Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/ext/sphinx_recipe/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "sphinx-recipe"
description = "A Sphinx directive for not-quite-literate programming in the form of code recipes."
authors = [{name = "Apache Arrow Developers", email = "dev@arrow.apache.org"}]
license = {text = "Apache-2.0"}
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.9"
dependencies = ["sphinx"]
Expand All @@ -30,7 +30,7 @@ homepage = "https://arrow.apache.org/adbc/"
repository = "https://github.com/apache/arrow-adbc"

[build-system]
requires = ["setuptools >= 61.0.0"]
requires = ["setuptools >= 77.0.0"]
build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
Expand Down
6 changes: 3 additions & 3 deletions python/adbc_driver_bigquery/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
name = "adbc-driver-bigquery"
description = "An ADBC driver for working with BigQuery."
authors = [{name = "Apache Arrow Developers", email = "dev@arrow.apache.org"}]
license = {text = "Apache-2.0"}
license = "Apache-2.0"
license-files = ["LICENSE.txt", "NOTICE.txt"]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
Expand All @@ -37,12 +38,11 @@ homepage = "https://arrow.apache.org/adbc/"
repository = "https://github.com/apache/arrow-adbc"

[build-system]
requires = ["setuptools >= 61.0.0"]
requires = ["setuptools >= 77.0.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
include-package-data = true
license-files = ["LICENSE.txt", "NOTICE.txt"]
packages = ["adbc_driver_bigquery"]
py-modules = ["adbc_driver_bigquery"]

Expand Down
6 changes: 3 additions & 3 deletions python/adbc_driver_flightsql/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
name = "adbc-driver-flightsql"
description = "An ADBC driver for working with Apache Arrow Flight SQL."
authors = [{name = "Apache Arrow Developers", email = "dev@arrow.apache.org"}]
license = {text = "Apache-2.0"}
license = "Apache-2.0"
license-files = ["LICENSE.txt", "NOTICE.txt"]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
Expand All @@ -37,12 +38,11 @@ homepage = "https://arrow.apache.org/adbc/"
repository = "https://github.com/apache/arrow-adbc"

[build-system]
requires = ["setuptools >= 61.0.0"]
requires = ["setuptools >= 77.0.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
include-package-data = true
license-files = ["LICENSE.txt", "NOTICE.txt"]
packages = ["adbc_driver_flightsql"]
py-modules = ["adbc_driver_flightsql"]

Expand Down
6 changes: 3 additions & 3 deletions python/adbc_driver_manager/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
name = "adbc-driver-manager"
description = "A generic entrypoint for ADBC drivers."
authors = [{name = "Apache Arrow Developers", email = "dev@arrow.apache.org"}]
license = {text = "Apache-2.0"}
license = "Apache-2.0"
license-files = ["LICENSE.txt", "NOTICE.txt"]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
Expand All @@ -34,7 +35,7 @@ homepage = "https://arrow.apache.org/adbc/"
repository = "https://github.com/apache/arrow-adbc"

[build-system]
requires = ["Cython", "setuptools >= 61.0.0"]
requires = ["Cython", "setuptools >= 77.0.0"]
build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
Expand All @@ -47,6 +48,5 @@ markers = [
xfail_strict = true

[tool.setuptools]
license-files = ["LICENSE.txt", "NOTICE.txt"]
packages = ["adbc_driver_manager"]
py-modules = ["adbc_driver_manager"]
6 changes: 3 additions & 3 deletions python/adbc_driver_postgresql/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
name = "adbc-driver-postgresql"
description = "A libpq-based ADBC driver for working with PostgreSQL."
authors = [{name = "Apache Arrow Developers", email = "dev@arrow.apache.org"}]
license = {text = "Apache-2.0"}
license = "Apache-2.0"
license-files = ["LICENSE.txt", "NOTICE.txt"]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
Expand All @@ -37,7 +38,7 @@ homepage = "https://arrow.apache.org/adbc/"
repository = "https://github.com/apache/arrow-adbc"

[build-system]
requires = ["setuptools >= 61.0.0"]
requires = ["setuptools >= 77.0.0"]
build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
Expand All @@ -48,6 +49,5 @@ xfail_strict = true

[tool.setuptools]
include-package-data = true
license-files = ["LICENSE.txt", "NOTICE.txt"]
packages = ["adbc_driver_postgresql"]
py-modules = ["adbc_driver_postgresql"]
6 changes: 3 additions & 3 deletions python/adbc_driver_snowflake/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
name = "adbc-driver-snowflake"
description = "An ADBC driver for working with Snowflake."
authors = [{name = "Apache Arrow Developers", email = "dev@arrow.apache.org"}]
license = {text = "Apache-2.0"}
license = "Apache-2.0"
license-files = ["LICENSE.txt", "NOTICE.txt"]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
Expand All @@ -37,12 +38,11 @@ homepage = "https://arrow.apache.org/adbc/"
repository = "https://github.com/apache/arrow-adbc"

[build-system]
requires = ["setuptools >= 61.0.0"]
requires = ["setuptools >= 77.0.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
include-package-data = true
license-files = ["LICENSE.txt", "NOTICE.txt"]
packages = ["adbc_driver_snowflake"]
py-modules = ["adbc_driver_snowflake"]

Expand Down
6 changes: 3 additions & 3 deletions python/adbc_driver_sqlite/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
name = "adbc-driver-sqlite"
description = "An ADBC driver for working with SQLite."
authors = [{name = "Apache Arrow Developers", email = "dev@arrow.apache.org"}]
license = {text = "Apache-2.0"}
license = "Apache-2.0"
license-files = ["LICENSE.txt", "NOTICE.txt"]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
Expand All @@ -37,12 +38,11 @@ homepage = "https://arrow.apache.org/adbc/"
repository = "https://github.com/apache/arrow-adbc"

[build-system]
requires = ["setuptools >= 61.0.0"]
requires = ["setuptools >= 77.0.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
include-package-data = true
license-files = ["LICENSE.txt", "NOTICE.txt"]
packages = ["adbc_driver_sqlite"]
py-modules = ["adbc_driver_sqlite"]

Expand Down
Loading