forked from bigdata-ustc/EduData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.13 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# 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',
]
setup(
name='EduData',
version='0.0.18',
extras_require={
'test': test_deps,
},
packages=find_packages(),
python_requires='>=3.6',
long_description='Refer to full documentation https://github.com/bigdata-ustc/EduData/blob/master/README.md'
' for detailed information.',
description='This project aims to '
'provide convenient interfaces for downloading and preprocessing dataset in education.',
install_requires=[
'tqdm',
'networkx',
'longling[ml]>=1.3.15',
'requests',
'bs4',
'rarfile',
'pandas',
'fire',
'lxml',
'numpy>=1.16.5',
'scipy>=1.2.0',
'scikit-learn>=0.23.2',
], # And any other dependencies foo needs
entry_points={
"console_scripts": [
"edudata = EduData.main:cli",
],
},
classifier=[
"Programming Language :: Python :: 3",
]
)