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