-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 1021 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 1021 Bytes
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
import setuptools
from setuptools import setup, find_packages
VERSION = '0.0.4'
DESCRIPTION = 'Retrieve article links and text from Vikidia and their equivalents in Wikipedia'
LONG_DESCRIPTION = 'A packgage to build a parallel corpus with articles from Vikidia and Wikipedia only for research purposes (e.g. readability analysis, text simplification). Only Vikidia articles with Wikipedia equivalents are downloaded.'
setup(
name = 'vikitext',
version = '0.0.4',
author = 'Cristina Garcia Holgado',
author_email = 'cristina.garcia-holgado@etu.unistra.fr',
description = DESCRIPTION,
install_requires = ['beautifulsoup4','requests','numpy','pandas'],
license = 'MIT',
keywords = ['corpus','vikidia','wikicommons','wikipedia'],
url = 'https://github.com/CristinaGHolgado/vikitext',
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows"],
packages=['vikitext'],
package_data={'vikitext': [r'data/*.txt']},
python_requires=">=3.6",
zip_safe=False
)