Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
41 changes: 41 additions & 0 deletions .github/workflows/build_pip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build PyDough Pip Wheel

on:
workflow_dispatch:
release:
types: [published]
pull_request:


jobs:
build_pydough_wheels:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
name: Build PyDough Wheels

steps:
# - name: Configure AWS Credentials
# uses: aws-actions/configure-aws-credentials@v4
# with:
# # TODO: FIXME
# aws-region: TODO
# role-to-assume: TODO
# role-session-name: TODO
# role-skip-session-tagging: true
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.4.23"

- name: Build Wheels
run: |
uv build

# - uses: actions/upload-artifact@v4
# with:
# name: upload-wheels
# path: ./dist/*.whl
26 changes: 23 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,40 @@
[project]
name = "pydough"
version = "0.1.0"
description = "TODO"
dynamic = ["version"]
keywords = ["analytics"]
description = "Analytics DSL for Python"
readme = "README.md"
authors = [{name = "Bodo.ai"}]
requires-python = ">=3.10"

classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

# Note: sqlite is included in the standard library, so it doesn't need to be listed here.
dependencies = ["pytz", "sqlglot", "pandas>=2.0.0", "jupyterlab"]

[project.urls]
# TODO: Add homepage + documentation when docs are live.
Repository = "https://github.com/bodo-ai/PyDough"

[tool.uv]
dev-dependencies = ["pre-commit", "pytest", "ruff==0.6.7"]

[build-system]
requires = ["hatchling"]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"

[tool.hatch.version]
source = "vcs"

[tool.ruff]
unsafe-fixes = true
lint.extend-select = [
Expand Down
Loading