-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixi.toml
92 lines (83 loc) · 2 KB
/
pixi.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[project]
channels = ["conda-forge"]
name = "sqlcompyre"
platforms = ["linux-64", "osx-64", "osx-arm64"]
[tasks]
postinstall = "pip install --no-build-isolation --no-deps --disable-pip-version-check -e ."
[dependencies]
python = ">=3.11"
# Dependencies
click = "*"
pydantic = ">=2.0"
pyyaml = "*"
sqlalchemy = ">=2"
tabulate = "*"
tqdm = "*"
types-pyyaml = "*"
types-tabulate = "*"
# Database Dependencies: MSSQL
unixodbc = "*"
# Database Dependencies: DuckDB
duckdb-engine = "*"
python-duckdb = "*"
[host-dependencies]
pip = "*"
setuptools = ">=61"
setuptools-scm = "*"
types-setuptools = "*"
[feature.docs.dependencies]
make = "*"
numpydoc = "*"
sphinx = "*"
sphinx_rtd_theme = "*"
sphinxcontrib-apidoc = "*"
[feature.docs.tasks]
docs = "cd docs && make html"
readthedocs = "rm -rf $READTHEDOCS_OUTPUT/html && cp -r docs/_build/html $READTHEDOCS_OUTPUT/html"
[feature.test.dependencies]
mypy = "*"
pandas = "*"
polars = "*"
pyodbc = "*"
pytest = ">=6,<8" # Adds --import-mode option
pytest-console-scripts = "*"
pytest-cov = "*"
pytest-lazy-fixture = "*"
python-dotenv = "*"
sqlalchemy-utils = "*"
[feature.test.tasks]
test = "python -m pytest"
test-coverage = "python -m pytest --cov=sqlcompyre --cov-report=xml --cov-report=term-missing"
[feature.build.dependencies]
python-build = "*"
twine = "*"
wheel = "*"
[feature.build.tasks]
build-wheel = "python -m build --no-isolation ."
check-wheel = "twine check dist/*"
[feature.lint.dependencies]
docformatter = "*"
insert-license-header = "*"
pre-commit = "*"
pre-commit-hooks = "*"
prettier = "*"
ruff = "*"
taplo = "*"
typos = "*"
[feature.lint.tasks]
pre-commit-install = "pre-commit install"
pre-commit-run = "pre-commit run -a"
[feature.py311.dependencies]
python = "3.11.*"
[feature.py312.dependencies]
python = "3.12.*"
[feature.py313.dependencies]
python = "3.13.*"
[environments]
build = ["build"]
default = ["test"]
docs = ["docs"]
lint = { features = ["lint"], no-default-feature = true }
py311 = ["py311", "test"]
py312 = ["py312", "test"]
py313 = ["py313", "test"]