-
Notifications
You must be signed in to change notification settings - Fork 990
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 925 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 925 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "funrec"
version = "0.0.1"
description = ""
readme = "README.md"
license = { text = "CC BY-NC-SA 4.0" }
authors = [
]
requires-python = ">=3.8"
dependencies = [
"tensorflow==2.13.0",
"pandas==2.0.3",
"scikit-learn>=1.3.2",
"python-dotenv==1.0.1",
"pyyaml==6.0.2",
"gensim==4.3.3",
"tabulate==0.9.0",
"tqdm==4.67.1",
"networkx==3.1",
# 新闻推荐需要
"seaborn==0.13.2",
"faiss-cpu==1.7.4",
"lightgbm==4.6.0",
]
[project.urls]
Homepage = "https://github.com/datawhalechina/fun-rec"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
funrec = ["config/*.yaml", "config/*.py"]