Spaces:
Runtime error
Runtime error
File size: 1,070 Bytes
f8c7bb7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | [project]
name = "social-sphere-llm"
version = "0.1.0"
description = "Social media analysis project using Jupyter notebooks for data exploration, MLflow tracking, and machine learning modeling"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
readme = "README.md"
requires-python = ">=3.8.1"
dependencies = [
"pandas>=2.0.0",
"scikit-learn>=1.3.0",
"numpy>=1.24.0",
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"jupyter>=1.0.0",
"ipykernel>=6.25.0",
"tqdm>=4.65.0",
"missingno>=0.5.0",
"mlflow>=2.8.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"plotly>=5.17.0",
"pydantic>=2.5.0",
]
[project.optional-dependencies]
dev = [
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88
[tool.hatch.build.targets.wheel]
packages = ["src/social_sphere_llm"] |