-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.15 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
"""wikiconv-crunch
Process the WikiConv dataset.
"""
from setuptools import setup, find_packages
setup(
name='wikiconv-crunch',
version='0.0.1',
author='Cristian Consonni',
author_email='cris' 'tian.con' 'sonni' '<a' 't>' 'eu' 'recat' '<d' 'ot>org',
license='GPL3',
description='Process links and other data extracted from the Wikipedia dump.',
long_description=__doc__,
url='https://github.com/WikiCommunityHealth/wikiconv-crunch',
packages=find_packages(),
entry_points={
'console_scripts': [
'wikiconv-crunch=wikiconv-crunch.__main__:main',
],
},
install_requires=[
'arrow==0.7.0',
'compressed-stream==0.0.2',
'jsonable==0.3.1',
'Mako==1.0.2',
'MarkupSafe==0.23',
'mediawiki-utilities==0.4.18',
'mwcites==0.2.0',
'mwcli==0.0.1',
'mwparserfromhell==0.4.2',
'mwtypes==0.2.0',
'mwxml==0.2.0',
'regex==2018.8.17',
'more-itertools==6.0.0',
'fuzzywuzzy==0.8.0',
'python-Levenshtein==0.12.0',
'requests==2.9.1',
'typing==3.5.0.1',
],
zip_safe=False,
)