forked from euske/pymwp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 967 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
#!/usr/bin/env python2
from distutils.core import setup
from pymwp import __version__
setup(
name='pymwp',
version=__version__,
description='Python MediaWiki parser',
long_description=
'''PyMWP is a simple and robust parser for MediaWiki contents.
It is suitable for analyzing or extracting information
from Wikipedia articles.''',
license='MIT/X',
author='Yusuke Shinyama',
author_email='yusuke at cs dot nyu dot edu',
url='http://www.unixuser.org/~euske/python/pymwp/index.html',
packages=[
'pymwp',
],
scripts=[
'tools/mwdumpcdb.py',
'tools/mwdump2wiki.py',
'tools/mwwiki2txt.py',
],
keywords=['mediawiki parser', 'text mining'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Text Processing',
],
)