-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpixi.toml
34 lines (32 loc) · 886 Bytes
/
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
# TODO: move to pyproject.toml when pixi supports it
# https://github.com/prefix-dev/pixi/issues/79
[project]
name = "tclf"
description = "Classify trades using trade classification algorithms 🐍"
authors = ["Marks Bilz <[email protected]>"]
channels = ["conda-forge"]
platforms = ["win-64", "linux-64"]
[tasks]
# install packages not on conda-forge
postinstall = "pip install --upgrade --no-build-isolation --no-deps --disable-pip-version-check -e .; pip install pytest-codspeed mkdocs-bibtex commitizen"
doc = "mkdocs serve"
test = "pytest -v tests/ --cov=src --cov-report=xml"
lint = "pre-commit run --all"
[dependencies]
python = ">=3.8"
numpy = "*"
pandas = "*"
pip = "*"
scikit-learn = "*"
# doc
# mdx-include = ">=1.4.1"
mkdocs = "*"
mkdocs-material = "*"
mkdocstrings-python = "*"
# build
setuptools = "*"
# test
pytest = "*"
pytest-cov = "*"
# linting
pre-commit = "*"