-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathsetup.py
27 lines (25 loc) · 1.01 KB
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="pykt-toolkit",
version="0.0.38",
author="pykt-team",
author_email="[email protected]",
description="pyKT: A Python Library to Benchmark Deep Learning based Knowledge Tracing Models",
long_description="pyKT: A Python Library to Benchmark Deep Learning based Knowledge Tracing Models",
long_description_content_type="text/markdown",
index="https://github.com/pykt-team/pykt-toolkit",
project_urls={
"Bug Tracker": "https://github.com/pykt-team/pykt-toolkit/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(),
python_requires=">=3.5",
include_package_data=True,
install_requires=['numpy>=1.17.2','pandas>=1.1.5','scikit-learn','torch>=1.7.0','wandb>=0.12.9','entmax'],
)