update: Add setup.py
* Add the first version of setup.py in order to simplify creation of a real `wikiextractor` command. Signed-off-by: mr.Shu <mr@shu.io>
This commit is contained in:
parent
fc89e2514e
commit
22103664fc
21
setup.py
Normal file
21
setup.py
Normal file
@ -0,0 +1,21 @@
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='wikiextractor',
|
||||
|
||||
description='A script that extracts and cleans text from a Wikipedia'
|
||||
'database dump',
|
||||
author='Giuseppe Attardi',
|
||||
author_email='attardi@di.unipi.it',
|
||||
version='2.42',
|
||||
|
||||
url='https://github.com/attardi/wikiextractor',
|
||||
|
||||
license="GPL 3.0",
|
||||
keywords=['text', 'nlp'],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'wikiextractor = WikiExtractor:main'
|
||||
]
|
||||
}
|
||||
)
|
Loading…
Reference in New Issue
Block a user