-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1013 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 1013 Bytes
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
from setuptools import setup, find_packages
setup(
name='ucas_dm',
version='1.0.0',
description="ucas_dm is a simple library provides preprocess and some recommend algorithms for UCAS's web data "
"mining homework project",
author='YLonely',
license='MIT',
author_email='loneybw@gmail.com',
url='https://github.com/YLonely/web-data-mining',
packages=find_packages(),
data_files=[('ucas_dm/preprocess/stop_words',
['ucas_dm/preprocess/stop_words/stop.txt'])],
platforms=['MacOS', 'Linux'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Information Analysis'
],
install_requires=['pandas',
'numpy',
'gensim',
'jieba',
'scikit-surprise']
)