-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 826 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
[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 = [
{ name = "Ruyi Luo", email = "ruyiluo@mail.com" },
{ name = "Bo Kang", email = "bokang@mail.com" }
]
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",
]
[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"]