forked from WikiCommunityHealth/wikidump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 986 Bytes
/
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
"""wikidump
~~~~~~~~
Extract features and stats from wikipedia XML dump files.
"""
from setuptools import setup, find_packages
setup(
name='wikidump',
version='0.0.1',
author='Alessio Bogon',
author_email='alessi' 'o.bogon' '<a' 't>' 'gm' 'ail' '<d' 'ot>co' 'm',
license='GPL3',
description='Extract features from wikipedia XML dumps.',
long_description=__doc__,
url='https://github.com/youtux/wikidump',
packages=find_packages(),
entry_points={
'console_scripts': [
'wikidump=wikidump.__main__:main',
],
},
install_requires=[
'arrow==0.13.1',
'Mako==1.0.2',
'mediawiki-utilities==0.4.18',
'mwcites==0.2.0',
'mwcli==0.0.1',
'mwtypes==0.2.0',
'mwxml==0.2.0',
'regex==2019.02.18',
'more-itertools==6.0.0',
'fuzzywuzzy==0.8.0',
'python-Levenshtein==0.12.0',
'typing==3.5.0.1',
],
zip_safe=False,
)