mirror of
https://github.com/koodiklinikka/palkkakysely.git
synced 2026-03-13 03:03:42 +00:00
30 lines
539 B
TOML
30 lines
539 B
TOML
[project]
|
|
name = "koodiklinikka-palkkakysely"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.13,<3.14" # numba is a dep of ydata-profiling
|
|
dependencies = [
|
|
"bokeh~=3.9.0",
|
|
"jinja2>=3.1.6",
|
|
"matplotlib",
|
|
"openpyxl>=3.1.5",
|
|
"pandas>=2.3.3,<3",
|
|
"setuptools<80", # we still need pkg_resources...
|
|
"ydata-profiling>=4.18.1",
|
|
]
|
|
|
|
[tool.ruff.lint]
|
|
ignore = [
|
|
"E501",
|
|
"PD901", # I know "df" isn't the best name
|
|
]
|
|
extend-select = [
|
|
"COM",
|
|
"I",
|
|
"PD",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pandas-stubs<3",
|
|
]
|