-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.08 KB
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
50
51
52
53
[project]
name = "philfan-notebook"
version = "0.0.1"
requires-python = ">=3.12,<3.13"
dependencies = [
"mkdocs==1.6.1",
"mkdocs-get-deps==0.2.0",
"mkdocs-git-revision-date-localized-plugin==1.2.6",
"mkdocs-heti-plugin==0.1.6",
"mkdocs-jupyter==0.25.1",
"mkdocs-material==9.5.31",
"mkdocs-material-extensions==1.3.1",
"mkdocs-minify-plugin==0.8.0",
"mkdocs-statistics-plugin",
"mkdocs-print-site-plugin==2.6.0",
"matplotlib",
"numpy==2.0.1",
"pandas==2.2.2",
"scipy==1.14.0",
"seaborn==0.13.2",
"statsmodels==0.14.4",
"pingouin==0.5.5",
"mdx-truly-sane-lists==1.3",
"mkdocs-changelog-plugin==0.1.3",
"calmap",
"mkdocs-rss-plugin==1.17.3",
"mkdocs-git-committers-plugin-2==2.5.0",
"beautifulsoup4==4.13.5",
]
[project.optional-dependencies]
dev = [
"ruff",
"pyrefly",
]
[tool.uv]
package = false
[tool.uv.pip]
index-url = "https://pypi.tuna.tsinghua.edu.cn/simple"
[tool.ruff]
line-length = 100
target-version = "py312"
extend-exclude = [
"docs/**/*.ipynb",
"docs/**/assets/**",
]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]