toolbox/pyproject.toml

44 lines
933 B
TOML
Raw Normal View History

2022-12-17 21:52:34 +01:00
[tool.pdm]
[project]
name = "toolbox"
2022-12-17 21:52:34 +01:00
version = "0.1.0"
description = "Code for ingesting data from several sources, formatting it and creating a training dataset."
2022-12-17 21:52:34 +01:00
authors = [
{name = "0x000011b", email = "0x000011b@proton.me"},
2022-12-17 21:52:34 +01:00
]
requires-python = ">=3.10"
license = {text = "AGPL-3.0-only"}
dependencies = [
"ijson>=3.1.4",
"mashumaro>=3.2",
"regex>=2022.10.31",
"scikit-learn>=1.2.0",
"pandas>=1.5.2",
"pyarrow>=10.0.1",
2022-12-17 21:52:34 +01:00
]
[project.optional-dependencies]
dev = [
"yapf>=0.32.0",
"toml>=0.10.2",
"isort>=5.10.1",
"pylint>=2.15.8",
"mypy>=0.991",
]
debugging = [
"pdbpp>=0.10.3",
]
2022-12-17 21:52:34 +01:00
[tool.setuptools]
py-modules = ["toolbox"]
2022-12-17 21:52:34 +01:00
[tool.pdm.scripts]
lint = {shell = "pylint --jobs 0 ./toolbox/**/*.py"}
importcheck = "isort --check --diff toolbox"
stylecheck = "yapf --parallel --diff --recursive toolbox"
typecheck = "mypy --strict toolbox"
2022-12-17 21:52:34 +01:00
[tool.yapf]
based_on_style = "google"