-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (37 loc) · 1.05 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
from distutils.core import setup
setup(
name = 'kcem',
packages = ['kcem'],
package_data={'kcem':['crawler/*', 'management/commands/*', 'utils/*', 'migrations/*', 'evaluation/*']},
version = '7.1',
description = 'kcem class file',
author = 'davidtnfsh',
author_email = '[email protected]',
url = 'https://github.com/udicatnchu/kcem',
download_url = 'https://github.com/udicatnchu/kcem/archive/v7.1.tar.gz',
keywords = ['kcem'],
classifiers = [],
license='GPL3.0',
install_requires=[
'simplejson',
'requests',
'pymongo',
'bs4',
'lxml',
'jieba',
'numpy',
'scipy',
'ngram',
'pytest',
'json-lines',
'pyquery',
'kem',
'psutil'
],
dependency_links=[
'git+git://github.com/yichen0831/opencc-python.git@master#egg=opencc-python',
'git+git://github.com/attardi/wikiextractor.git@2a5e6aebc030c936c7afd0c349e6826c4d02b871',
],
zip_safe=True,
scripts=['kcem/download_wikisql.sh']
)