-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
42 lines (38 loc) · 977 Bytes
/
setup.py
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
# coding: utf-8
# create by tongshiwei on 2019/6/25
from setuptools import setup, find_packages
test_deps = [
'pytest>=4',
'pytest-cov>=2.6.0',
'pytest-flake8',
'EduData>=0.0.17',
]
bench_deps = [
'EduData>=0.0.17',
'fire'
]
try:
import torch
torch_requires = []
except ModuleNotFoundError:
torch_requires = ["torch"]
setup(
name='TKT',
version='0.0.2',
packages=find_packages(),
python_requires='>=3.6',
long_description='Refer to full documentation https://github.com/bigdata-ustc/TKT/blob/master/README.md'
' for detailed information.',
description='This project aims to '
'provide multiple knowledge tracing models.',
extras_require={
'test': test_deps,
'benchmark': bench_deps,
},
install_requires=torch_requires + [
'EduKTM>=0.0.6',
'PyBaize>=0.0.5',
], # And any other dependencies foo needs
entry_points={
},
)