/
nevers
/
hackINTERPOL
Обзор
Документация
Войти
/
nevers
/
hackINTERPOL
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
pyproject.toml
83 строки
2 KB
nevers
update pyproject.toml
13 янв 2026, 17:33
13 янв 2026, 17:33
02cf42b
Код
Авторство
О чём код?
[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "studypulse" version = "0.1.0" description = "Learning Analytics CLI + HTML report generator for student progress tracking" readme = "README.md" requires-python = ">=3.11" license = {text = "MIT"} authors = [ {name = "StudyPulse Team"} ] keywords = ["education", "analytics", "learning", "cli"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Education", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] dependencies = [ "typer>=0.9.0", "pandas>=2.0.0", "numpy>=1.24.0", "scikit-learn>=1.3.0", "matplotlib>=3.7.0", ] [project.scripts] studypulse = "studypulse.cli:app" [tool.setuptools.packages.find] where = ["src"] [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = [ "E", # pycodestyle errors "W", # pycodestyle warnings "F", # pyflakes "B", # flake8-bugbear "C4", # flake8-comprehensions "UP", # pyupgrade ] ignore = [ "E501", # line too long, handled by formatter "B008", # do not perform function calls in argument defaults ] [tool.ruff.lint.isort] force-sort-within-sections = true [tool.ruff.format] quote-style = "double" indent-style = "space" [tool.pytest.ini_options] testpaths = ["tests"] python_files = "test_*.py" python_classes = "Test*" python_functions = "test_*" addopts = "-v --tb=short" [tool.coverage.run] source = ["src"] omit = ["*/tests/*"] [tool.coverage.report] exclude_lines = [ "pragma: no cover", "def __repr__", "raise AssertionError", "raise NotImplementedError", "if __name__ == .__main__.:", "if TYPE_CHECKING:", ]