52 lines
1.1 KiB
TOML
52 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["flit_core>=3.2"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[project]
|
|
name = "HMC_preprocessing"
|
|
version = "1.0.1"
|
|
description = "preprocessing for the longitudianl study on AI usage (Human Machine Communication project)"
|
|
authors = [
|
|
{name = "Gerrit Anders", email = "g.anders@iwm-tuebingen.de"}
|
|
]
|
|
readme = "README.md"
|
|
license = {text = "GPL-3.0-or-later"}
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: OS Independent"
|
|
]
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"pandas==2.2.3",
|
|
"PyYAML==6.0.2",
|
|
"pypandoc~=1.15",
|
|
"openpyxl==3.1.5",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest-cov>=4.0",
|
|
"mypy>=1.0",
|
|
"ruff>=0.11",
|
|
"black>=21.0",
|
|
"types-PyYAML",
|
|
"pre-commit>=3.0",
|
|
]
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
|
|
[tool.ruff.lint]
|
|
extend-select = [
|
|
"UP", # pyupgrade
|
|
]
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|