mirror of
https://github.com/ArthurDanjou/ArtStudies.git
synced 2026-03-16 05:11:40 +01:00
- Bump catboost from 1.2.8 to 1.2.10 - Update google-api-python-client from 2.190.0 to 2.191.0 - Upgrade langchain from 1.2.0 to 1.2.10 - Update langchain-core from 1.2.16 to 1.2.17 - Upgrade langchain-huggingface from 1.2.0 to 1.2.1 - Bump marimo from 0.19.11 to 0.20.2 - Update matplotlib from 3.10.1 to 3.10.8 - Upgrade numpy from 2.2.5 to 2.4.2 - Update opencv-python from 4.11.0.86 to 4.13.0.92 - Bump pandas from 2.2.3 to 3.0.1 - Update plotly from 6.3.0 to 6.6.0 - Upgrade polars from 1.37.0 to 1.38.1 - Bump rasterio from 1.4.4 to 1.5.0 - Update scikit-learn from 1.6.1 to 1.8.0 - Upgrade scipy from 1.15.2 to 1.17.1 - Bump shap from 0.49.1 to 0.50.0 - Adjust isort section order for better readability
149 lines
3.3 KiB
TOML
149 lines
3.3 KiB
TOML
[project]
|
|
name = "studies"
|
|
version = "0.1.0"
|
|
description = "A curated collection of mathematics and data science projects developed during my academic journey."
|
|
readme = "README.md"
|
|
requires-python = ">= 3.11"
|
|
dependencies = [
|
|
"accelerate>=1.12.0",
|
|
"ale-py>=0.11.2",
|
|
"catboost>=1.2.10",
|
|
"datasets>=4.6.1",
|
|
"faiss-cpu>=1.13.2",
|
|
"folium>=0.20.0",
|
|
"geopandas>=1.1.2",
|
|
"google-api-python-client>=2.191.0",
|
|
"google-auth-oauthlib>=1.3.0",
|
|
"google-generativeai>=0.8.6",
|
|
"gymnasium[toy-text]>=1.2.3",
|
|
"imblearn>=0.0",
|
|
"ipykernel>=7.2.0",
|
|
"ipywidgets>=8.1.8",
|
|
"langchain>=1.2.10",
|
|
"langchain-community>=0.4.1",
|
|
"langchain-core>=1.2.17",
|
|
"langchain-huggingface>=1.2.1",
|
|
"langchain-mistralai>=1.1.1",
|
|
"langchain-ollama>=1.0.1",
|
|
"langchain-openai>=1.1.10",
|
|
"langchain-text-splitters>=1.1.1",
|
|
"mapclassify>=2.10.0",
|
|
"marimo>=0.20.2",
|
|
"matplotlib>=3.10.8",
|
|
"nbformat>=5.10.4",
|
|
"numpy>=2.4.2",
|
|
"opencv-python>=4.13.0.92",
|
|
"openpyxl>=3.1.5",
|
|
"pandas>=3.0.1",
|
|
"pandas-stubs>=3.0.0.260204",
|
|
"pettingzoo[atari]>=1.25.0",
|
|
"plotly>=6.6.0",
|
|
"polars>=1.38.1",
|
|
"pyclustertend>=1.9.0",
|
|
"pypdf>=6.7.5",
|
|
"rasterio>=1.5.0",
|
|
"requests>=2.32.5",
|
|
"scikit-learn>=1.8.0",
|
|
"scipy>=1.17.1",
|
|
"seaborn>=0.13.2",
|
|
"sentence-transformers>=5.2.3",
|
|
# "sequenzo>=0.1.20",
|
|
"shap>=0.50.0",
|
|
"spacy>=3.8.11",
|
|
"statsmodels>=0.14.6",
|
|
"supersuit>=3.10.0",
|
|
"tensorflow>=2.20.0",
|
|
"tf-keras>=2.20.1",
|
|
"tiktoken>=0.12.0",
|
|
"todoist-python>=8.1.4",
|
|
"torch>=2.10.0",
|
|
"umap-learn>=0.5.11",
|
|
"uv>=0.10.7",
|
|
"wbdata>=1.1.0",
|
|
"xgboost>=3.2.0",
|
|
"yfinance>=1.2.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = ["ipykernel>=7.2.0", "uv>=0.10.7"]
|
|
|
|
[tool.ty.rules]
|
|
index-out-of-bounds = "ignore"
|
|
|
|
[tool.ruff]
|
|
extend-include = ["*.ipynb"]
|
|
line-length = 88
|
|
|
|
[tool.ruff.lint]
|
|
# Activer les règles de linting courantes
|
|
select = ["ALL"]
|
|
|
|
# Désactiver certaines règles
|
|
ignore = [
|
|
"E501", # line too long, géré par le formatter
|
|
"E402", # Imports in top of file
|
|
"T201", # Print
|
|
"N806",
|
|
"N803",
|
|
"N802",
|
|
"N816",
|
|
"PLR0913", # Too many arguments
|
|
"PLR2004", #
|
|
"FBT001", # Boolean positional argument used in function definition
|
|
"EM101",
|
|
"TRY003", # Avoid specifying long messages outside the exception class
|
|
]
|
|
|
|
# Exclure certains fichiers ou répertoires
|
|
exclude = [
|
|
".bzr",
|
|
".direnv",
|
|
".eggs",
|
|
".git",
|
|
".hg",
|
|
".mypy_cache",
|
|
".nox",
|
|
".pants.d",
|
|
".pytype",
|
|
".ruff_cache",
|
|
".svn",
|
|
".tox",
|
|
".venv",
|
|
"__pypackages__",
|
|
"_build",
|
|
"buck-out",
|
|
"build",
|
|
"dist",
|
|
"node_modules",
|
|
"venv",
|
|
]
|
|
|
|
# Permettre à Ruff de corriger automatiquement certaines erreurs
|
|
fixable = ["ALL"]
|
|
unfixable = []
|
|
|
|
[tool.ruff.lint.isort]
|
|
# Regrouper les imports par thématiques
|
|
section-order = [
|
|
"future",
|
|
"standard-library",
|
|
"third-party",
|
|
"data-science",
|
|
"ml",
|
|
"first-party",
|
|
"local-folder",
|
|
]
|
|
|
|
[tool.ruff.lint.isort.sections]
|
|
# On sépare les outils de manipulation de données des frameworks de ML lourds
|
|
"data-science" = ["numpy", "pandas", "scipy", "matplotlib", "seaborn", "plotly"]
|
|
"ml" = [
|
|
"tensorflow",
|
|
"keras",
|
|
"torch",
|
|
"sklearn",
|
|
"xgboost",
|
|
"catboost",
|
|
"shap",
|
|
]
|