/
Nik_voz
/
rgpu_python_analysis
Обзор
Документация
Войти
/
Nik_voz
/
rgpu_python_analysis
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
pyproject.toml
72 строки
1 KB
Nick-voz
feat: add decision tree classifier and random forest regressor implementations
26 мар 2026, 06:50
26 мар 2026, 06:50
c1feb41
Код
Авторство
О чём код?
[tool.black] line-length = 79 include = '\.pyi?$' exclude = ''' /( \.git | \.hg | \.mypy_cache | \.tox | \.venv | _build | buck-out | build | dist )/ ''' experimental-string-processing = false [tool.isort] multi_line_output = 3 force_single_line = true known_standard_library = [ "os", ] known_third_party = [ "g4f", "pandas" ] known_local_folder = [ "python_analysis" ] sections = ['FUTURE', 'STDLIB', 'THIRDPARTY', 'FIRSTPARTY', 'LOCALFOLDER'] profile = "black" [tool.pylint] disable = [ "missing-module-docstring", "missing-function-docstring", "missing-class-docstring", "import-error" ] importStrategy = "fromEnvironment" [project] name = "python-analysis" version = "0.1.0" description = "Add your description here" readme = "README.md" requires-python = ">=3.13" dependencies = [ "g4f>=0.5.2.2", "matplotlib>=3.10.8", "pandas>=2.3.2", "pytest>=8.3.5", "python-dotenv>=1.1.1", "scikit-learn>=1.8.0", "scipy>=1.16.3", "seaborn>=0.13.2", ]