-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 966 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 966 Bytes
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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sme_kt_zh_collaboration_forecasting"
license = "MIT"
description = ""
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"autogluon>=1.5.0",
"dotenv>=0.9.9",
"ipykernel>=7.2.0",
"lifelines>=0.30.1",
"nbformat>=5.10.4",
"notebook>=7.5.4",
"openpyxl>=3.1.5",
"pandas>=2.3.3",
"plotly>=6.5.2",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"ruff>=0.15.2",
"scikit-learn>=1.7.2",
"scikit-survival>=0.25.0",
"seaborn>=0.13.2",
"statsmodels>=0.14.6",
"tqdm>=4.67.3",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "sme_kt_zh_collaboration_forecasting.__version__"}
[tool.ruff]
target-version = "py311"
line-length = 88
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
lines-after-imports = 2
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]