[tool.black] line-length = 88 include = '\.pyi?$' exclude = ''' /( \.git | \.hg | \.mypy_cache | \.tox | \.venv | _build | buck-out | build | dist )/ ''' [project] name = "thechart" version = "1.0.0" description = "App to monitor medication and its effects over time" authors = [ {name = "William Valentin",email = "william.valentin.info@gmail.com"} ] license = {text = "MIT"} readme = "README.md" requires-python = ">=3.13,<3.14" dependencies = [ "pandas (>=2.3.1,<3.0.0)", "matplotlib (>=3.10.3,<4.0.0)", "dotenv (>=0.9.9,<0.10.0)", "colorlog (>=6.9.0,<7.0.0)" ] [tool.poetry] [tool.poetry.group.dev.dependencies] pre-commit = "^4.2.0" pyinstaller = "^6.14.2" black = "^25.1.0" flake8 = "^7.3.0" autopep8 = "^2.3.2" [build-system] requires = ["poetry-core>=2.0.0,<3.0.0"] build-backend = "poetry.core.masonry.api"