Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 68c0e84

Browse files
committedSep 24, 2024··
First commit
0 parents  commit 68c0e84

30 files changed

+755
-0
lines changed
 

‎.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
expr-lang/_version.py export-subst

‎.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"

‎.github/workflows/black.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Black Formatting
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
black:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version-file: .python-version
16+
17+
- name: Install Dependencies
18+
run: make install
19+
20+
- name: Test Formatting
21+
run: make black_check

‎.github/workflows/dapperdata.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Configuration File Formatting
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
dapperdata:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version-file: .python-version
16+
17+
- name: Install Dependencies
18+
run: make install
19+
20+
- name: Test Formatting
21+
run: make dapperdata_check

‎.github/workflows/lockfiles.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Update Dependencies and Push to Github
2+
3+
on:
4+
# Allow API to be hit to trigger workflow.
5+
workflow_dispatch:
6+
7+
# Every Monday at 1PM UTC (7AM EST)
8+
schedule:
9+
- cron: "0 11 * * 1"
10+
11+
jobs:
12+
push-update:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- uses: actions/setup-python@v5
20+
with:
21+
python-version-file: .python-version
22+
23+
- name: "Update Lockfiles and Open PR"
24+
uses: tedivm/action-python-lockfile-update@v2
25+
with:
26+
pip_extras: "dev"
27+
# This key will bypass workflow limitations to ensure tests are run.
28+
# deploy_key: ${{ secrets.WRITEABLE_DEPLOY_KEY }}
29+
30+
env:
31+
# Needed to open pull request- automatically set for all actions.
32+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

‎.github/workflows/mypy.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Mypy testing
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
mypy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version-file: .python-version
16+
17+
- name: Install Dependencies
18+
run: make install
19+
20+
- name: Test Typing
21+
run: make mypy_check

‎.github/workflows/pypi.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: PyPI
2+
3+
on:
4+
push:
5+
branches:
6+
- "**"
7+
tags:
8+
- "v[0-9]+.[0-9]+.[0-9]+"
9+
pull_request:
10+
11+
env:
12+
PUBLISH_TO_PYPI: true
13+
14+
jobs:
15+
pypi:
16+
runs-on: ubuntu-latest
17+
permissions:
18+
id-token: write
19+
steps:
20+
- uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0
23+
fetch-tags: true
24+
25+
- uses: actions/setup-python@v5
26+
with:
27+
python-version-file: .python-version
28+
29+
- name: Install Dependencies
30+
run: make install
31+
32+
- name: Build Wheel
33+
run: make build
34+
35+
# This will only run on Tags
36+
- name: Publish package
37+
if: ${{ env.PUBLISH_TO_PYPI == 'true' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags')}}
38+
uses: pypa/gh-action-pypi-publish@release/v1

‎.github/workflows/pytest.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: PyTest
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
env:
8+
COLUMNS: 120
9+
10+
jobs:
11+
pytest:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version-file: .python-version
19+
20+
- name: Install Dependencies
21+
run: make install
22+
23+
- name: Run Tests
24+
run: make pytest

‎.github/workflows/ruff.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Ruff Linting
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
black:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version-file: .python-version
16+
17+
- name: Install Dependencies
18+
run: make install
19+
20+
- name: Test Formatting
21+
run: make ruff_check

‎.github/workflows/tomlsort.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: TOML Formatting
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
tomlsort:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version-file: .python-version
16+
17+
- name: Install Dependencies
18+
run: make install
19+
20+
- name: Test Typing
21+
run: make tomlsort_check

‎.gitignore

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
.ruff_cache/
53+
cover/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
db.sqlite3
63+
db.sqlite3-journal
64+
65+
# Flask stuff:
66+
instance/
67+
.webassets-cache
68+
69+
# Scrapy stuff:
70+
.scrapy
71+
72+
# Sphinx documentation
73+
docs/_build/
74+
75+
# PyBuilder
76+
.pybuilder/
77+
target/
78+
79+
# Jupyter Notebook
80+
.ipynb_checkpoints
81+
82+
# IPython
83+
profile_default/
84+
ipython_config.py
85+
86+
# pyenv
87+
# For a library or package, you might want to ignore these files since the code is
88+
# intended to run in multiple environments; otherwise, check them in:
89+
# .python-version
90+
91+
# pipenv
92+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
93+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
94+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
95+
# install all needed dependencies.
96+
#Pipfile.lock
97+
98+
# poetry
99+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
100+
# This is especially recommended for binary packages to ensure reproducibility, and is more
101+
# commonly ignored for libraries.
102+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
103+
#poetry.lock
104+
105+
# pdm
106+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
107+
#pdm.lock
108+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
109+
# in version control.
110+
# https://pdm.fming.dev/#use-with-ide
111+
.pdm.toml
112+
113+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
114+
__pypackages__/
115+
116+
# Celery stuff
117+
celerybeat-schedule
118+
celerybeat.pid
119+
120+
# SageMath parsed files
121+
*.sage.py
122+
123+
# Environments
124+
.env
125+
.venv
126+
env/
127+
venv/
128+
ENV/
129+
env.bak/
130+
venv.bak/
131+
132+
# Spyder project settings
133+
.spyderproject
134+
.spyproject
135+
136+
# Rope project settings
137+
.ropeproject
138+
139+
# mkdocs documentation
140+
/site
141+
142+
# mypy
143+
.mypy_cache/
144+
.dmypy.json
145+
dmypy.json
146+
147+
# Pyre type checker
148+
.pyre/
149+
150+
# pytype static type analyzer
151+
.pytype/
152+
153+
# Cython debug symbols
154+
cython_debug/
155+
156+
# PyCharm
157+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
158+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
159+
# and can be added to the global gitignore or merged into this file. For a more nuclear
160+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
161+
#.idea/
162+
163+
# scm-version file
164+
expr-lang/_version.py

‎.pre-commit-config.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
repos:
2+
- repo: local
3+
hooks:
4+
- id: pytest
5+
name: pytest
6+
entry: make pytest_check
7+
language: system
8+
pass_filenames: false
9+
- id: ruff
10+
name: ruff
11+
entry: make ruff_check
12+
language: system
13+
pass_filenames: false
14+
- id: black
15+
name: black
16+
entry: make black_check
17+
language: system
18+
pass_filenames: false
19+
- id: mypy
20+
name: mypy
21+
entry: make mypy_check
22+
language: system
23+
pass_filenames: false
24+
- id: tomlsort
25+
name: tomlsort
26+
entry: make tomlsort_check
27+
language: system
28+
pass_filenames: false

‎.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.11

‎LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024, Expr Team
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# expr-lang
2+
3+
Expr Lang
4+
5+
## Installation
6+
7+
```bash
8+
pip install expr-lang
9+
```

‎docs/dev/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Developer Readme
2+
3+
1. [Dependencies](./dependencies.md)
4+
1. [Github Actions](./github.md)
5+
1. [PyPI](./pypi.md)
6+
7+
1. [Settings](./settings.md)

‎docs/dev/dependencies.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Dependencies

‎docs/dev/github.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Github

‎docs/dev/pypi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# PyPI

‎docs/dev/settings.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Settings
2+
3+
This project uses the [Pydantic Base Settings](https://docs.pydantic.dev/usage/settings/) system. The `expr-lang.conf.settings:Settings` class can be expanded to include new settings. An active instance of the settings class can be found at `expr-lang.conf:settings`.

‎expr-lang/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
try:
2+
from . import _version
3+
4+
__version__ = _version.__version__
5+
except: # noqa: E722
6+
__version__ = "0.0.0-dev"

‎expr-lang/conf/__init__.py

Whitespace-only changes.

‎expr-lang/conf/settings.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from pydantic_settings import BaseSettings
2+
3+
4+
class Settings(BaseSettings):
5+
project_name: str = "expr-lang"
6+
debug: bool = False

‎expr-lang/py.typed

Whitespace-only changes.

‎expr-lang/settings.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from .conf.settings import Settings
2+
3+
settings = Settings()

‎makefile

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
SHELL := /bin/bash
2+
PACKAGE_SLUG=expr-lang
3+
ifdef CI
4+
PYTHON_PYENV :=
5+
PYTHON_VERSION := $(shell python --version|cut -d" " -f2)
6+
else
7+
PYTHON_PYENV := pyenv
8+
PYTHON_VERSION := $(shell cat .python-version)
9+
endif
10+
PYTHON_SHORT_VERSION := $(shell echo $(PYTHON_VERSION) | grep -o '[0-9].[0-9]*')
11+
12+
ifeq ($(USE_SYSTEM_PYTHON), true)
13+
PYTHON_PACKAGE_PATH:=$(shell python -c "import sys; print(sys.path[-1])")
14+
PYTHON_ENV :=
15+
PYTHON := python
16+
PYTHON_VENV :=
17+
else
18+
PYTHON_PACKAGE_PATH:=.venv/lib/python$(PYTHON_SHORT_VERSION)/site-packages
19+
PYTHON_ENV := . .venv/bin/activate &&
20+
PYTHON := . .venv/bin/activate && python
21+
PYTHON_VENV := .venv
22+
endif
23+
24+
# Used to confirm that pip has run at least once
25+
PACKAGE_CHECK:=$(PYTHON_PACKAGE_PATH)/build
26+
PYTHON_DEPS := $(PACKAGE_CHECK)
27+
28+
29+
.PHONY: all
30+
all: $(PACKAGE_CHECK)
31+
32+
.PHONY: install
33+
install: $(PYTHON_PYENV) $(PYTHON_VENV) pip
34+
35+
.venv:
36+
python -m venv .venv
37+
38+
.PHONY: pyenv
39+
pyenv:
40+
pyenv install --skip-existing $(PYTHON_VERSION)
41+
42+
.PHONY: pip
43+
pip: $(PYTHON_VENV)
44+
$(PYTHON) -m pip install -e .[dev]
45+
46+
$(PACKAGE_CHECK): $(PYTHON_VENV)
47+
$(PYTHON) -m pip install -e .[dev]
48+
49+
.PHONY: pre-commit
50+
pre-commit:
51+
pre-commit install
52+
53+
#
54+
# Formatting
55+
#
56+
.PHONY: chores
57+
chores: ruff_fixes black_fixes dapperdata_fixes tomlsort_fixes
58+
59+
.PHONY: ruff_fixes
60+
ruff_fixes:
61+
$(PYTHON) -m ruff check . --fix
62+
63+
.PHONY: black_fixes
64+
black_fixes:
65+
$(PYTHON) -m ruff format .
66+
67+
.PHONY: dapperdata_fixes
68+
dapperdata_fixes:
69+
$(PYTHON) -m dapperdata.cli pretty . --no-dry-run
70+
71+
.PHONY: tomlsort_fixes
72+
tomlsort_fixes:
73+
$(PYTHON_ENV) toml-sort $$(find . -not -path "./.venv/*" -name "*.toml") -i
74+
75+
#
76+
# Testing
77+
#
78+
.PHONY: tests
79+
tests: install pytest ruff_check black_check mypy_check dapperdata_check tomlsort_check
80+
81+
.PHONY: pytest
82+
pytest:
83+
$(PYTHON) -m pytest --cov=./${PACKAGE_SLUG} --cov-report=term-missing tests
84+
85+
.PHONY: pytest_loud
86+
pytest_loud:
87+
$(PYTHON) -m pytest -s --cov=./${PACKAGE_SLUG} --cov-report=term-missing tests
88+
89+
.PHONY: ruff_check
90+
ruff_check:
91+
$(PYTHON) -m ruff check
92+
93+
.PHONY: black_check
94+
black_check:
95+
$(PYTHON) -m ruff format . --check
96+
97+
.PHONY: mypy_check
98+
mypy_check:
99+
$(PYTHON) -m mypy ${PACKAGE_SLUG}
100+
101+
.PHONY: dapperdata_check
102+
dapperdata_check:
103+
$(PYTHON) -m dapperdata.cli pretty .
104+
105+
.PHONY: tomlsort_check
106+
tomlsort_check:
107+
$(PYTHON_ENV) toml-sort $$(find . -not -path "./.venv/*" -name "*.toml") --check
108+
#
109+
# Dependencies
110+
#
111+
112+
.PHONY: rebuild_dependencies
113+
rebuild_dependencies:
114+
$(PYTHON) -m uv pip compile --output-file=requirements.txt pyproject.toml
115+
$(PYTHON) -m uv pip compile --output-file=requirements-dev.txt --extra=dev pyproject.toml
116+
117+
.PHONY: dependencies
118+
dependencies: requirements.txt requirements-dev.txt
119+
120+
requirements.txt: $(PACKAGE_CHECK) pyproject.toml
121+
$(PYTHON) -m uv pip compile --upgrade --output-file=requirements.txt pyproject.toml
122+
123+
requirements-dev.txt: $(PACKAGE_CHECK) pyproject.toml
124+
$(PYTHON) -m uv pip compile --upgrade --output-file=requirements-dev.txt --extra=dev pyproject.toml
125+
126+
127+
128+
#
129+
# Packaging
130+
#
131+
132+
.PHONY: build
133+
build: $(PACKAGE_CHECK)
134+
$(PYTHON) -m build

‎pyproject.toml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
[build-system]
2+
build-backend = "setuptools.build_meta"
3+
requires = ["setuptools>=67.0", "setuptools_scm[toml]>=7.1"]
4+
5+
[project]
6+
authors = [{"name" = "Expr Team"}]
7+
description = "Expr Lang"
8+
dynamic = ["version"]
9+
license = {"file" = "LICENSE"}
10+
name = "expr-lang"
11+
readme = {file = "README.md", content-type = "text/markdown"}
12+
dependencies = [
13+
"pydantic~=2.0",
14+
"pydantic-settings"
15+
]
16+
17+
[project.optional-dependencies]
18+
dev = [
19+
"build",
20+
"dapperdata",
21+
"glom",
22+
"mypy",
23+
"pytest",
24+
"pytest-cov",
25+
"pytest-pretty",
26+
"ruamel.yaml",
27+
"ruff",
28+
"toml-sort",
29+
"uv"
30+
]
31+
32+
[tool.coverage.run]
33+
omit = [
34+
"./expr-lang/_version.py",
35+
"./expr-lang/__init__.py"
36+
]
37+
38+
[tool.ruff]
39+
exclude = [".venv", "./expr-lang/_version.py"]
40+
line-length = 120
41+
42+
[tool.setuptools.dynamic]
43+
readme = {file = ["README.md"]}
44+
45+
[tool.setuptools.package-data]
46+
expr-lang = ["py.typed"]
47+
48+
[tool.setuptools.packages]
49+
find = {}
50+
51+
[tool.setuptools_scm]
52+
fallback_version = "0.0.0-dev"
53+
write_to = "expr-lang/_version.py"

‎requirements-dev.txt

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# This file was autogenerated by uv via the following command:
2+
# uv pip compile --output-file=requirements-dev.txt --extra=dev pyproject.toml
3+
annotated-types==0.7.0
4+
# via pydantic
5+
attrs==24.2.0
6+
# via glom
7+
boltons==24.0.0
8+
# via
9+
# face
10+
# glom
11+
build==1.2.2
12+
# via expr-lang (pyproject.toml)
13+
click==8.1.7
14+
# via typer
15+
coverage==7.6.1
16+
# via pytest-cov
17+
dapperdata==0.4.0
18+
# via expr-lang (pyproject.toml)
19+
face==20.1.1
20+
# via glom
21+
glom==23.5.0
22+
# via expr-lang (pyproject.toml)
23+
iniconfig==2.0.0
24+
# via pytest
25+
markdown-it-py==3.0.0
26+
# via rich
27+
mdurl==0.1.2
28+
# via markdown-it-py
29+
mypy==1.11.2
30+
# via expr-lang (pyproject.toml)
31+
mypy-extensions==1.0.0
32+
# via mypy
33+
packaging==24.1
34+
# via
35+
# build
36+
# pytest
37+
pluggy==1.5.0
38+
# via pytest
39+
pydantic==2.9.2
40+
# via
41+
# expr-lang (pyproject.toml)
42+
# dapperdata
43+
# pydantic-settings
44+
pydantic-core==2.23.4
45+
# via pydantic
46+
pydantic-settings==2.5.2
47+
# via
48+
# expr-lang (pyproject.toml)
49+
# dapperdata
50+
pygments==2.18.0
51+
# via rich
52+
pyproject-hooks==1.1.0
53+
# via build
54+
pytest==8.3.3
55+
# via
56+
# expr-lang (pyproject.toml)
57+
# pytest-cov
58+
# pytest-pretty
59+
pytest-cov==5.0.0
60+
# via expr-lang (pyproject.toml)
61+
pytest-pretty==1.2.0
62+
# via expr-lang (pyproject.toml)
63+
python-dotenv==1.0.1
64+
# via pydantic-settings
65+
rich==13.8.1
66+
# via
67+
# pytest-pretty
68+
# typer
69+
ruamel-yaml==0.18.6
70+
# via
71+
# expr-lang (pyproject.toml)
72+
# dapperdata
73+
ruamel-yaml-clib==0.2.8
74+
# via ruamel-yaml
75+
ruff==0.6.7
76+
# via expr-lang (pyproject.toml)
77+
shellingham==1.5.4
78+
# via typer
79+
toml-sort==0.23.1
80+
# via expr-lang (pyproject.toml)
81+
tomlkit==0.13.2
82+
# via toml-sort
83+
typer==0.12.5
84+
# via dapperdata
85+
typing-extensions==4.12.2
86+
# via
87+
# mypy
88+
# pydantic
89+
# pydantic-core
90+
# typer
91+
uv==0.4.15
92+
# via expr-lang (pyproject.toml)

‎requirements.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# This file was autogenerated by uv via the following command:
2+
# uv pip compile --output-file=requirements.txt pyproject.toml
3+
annotated-types==0.7.0
4+
# via pydantic
5+
pydantic==2.9.2
6+
# via
7+
# expr-lang (pyproject.toml)
8+
# pydantic-settings
9+
pydantic-core==2.23.4
10+
# via pydantic
11+
pydantic-settings==2.5.2
12+
# via expr-lang (pyproject.toml)
13+
python-dotenv==1.0.1
14+
# via pydantic-settings
15+
typing-extensions==4.12.2
16+
# via
17+
# pydantic
18+
# pydantic-core

‎tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)
Please sign in to comment.