-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.09 KB
/
pyproject.toml
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
[project]
name = "psi-kt"
version = "0.1.0.dev0"
description = ""
readme = "readme.md"
requires-python = ">=3.9"
keywords = []
authors = [
{name = "Hanqi Zhou", email = "[email protected]" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"ipdb>=0.13",
"matplotlib>=3.7",
"networkx>=3.0",
"numpy>=1.22",
"pandas>=1.5",
"scikit-learn>=1.2",
"scipy>=1.10",
"seaborn>=0.12",
"tqdm>=4.65",
"torch>=1.9.0",
]
[project.license]
name = "GNU Affero General Public License v3"
file = "LICENSE"
[project.urls]
"Homepage" = "https://github.com/mlcolab/knowledge_tracing"
"Bug Reports" = "https://github.com/mlcolab/knowledge_tracing/issues"
"Source" = "https://github.com/mlcolab/knowledge_tracing"
[tool.setuptools.packages.find]
exclude = [
"notebooks",
"scripts",
"tests",
]