forked from tatuylonen/wiktextract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.34 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
#!/usr/bin/env python3
#
# Copyright (c) 2018-2020 Tatu Ylonen. See LICENSE and https://ylonen.org
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(name="wiktextract",
version="0.2.0",
description="Wiktionary dump file parser and multilingual data extractor",
long_description=long_description,
long_description_content_type="text/markdown",
author="Tatu Ylonen",
author_email="[email protected]",
url="https://ylonen.org",
license="MIT",
download_url="https://github.com/tatuylonen/wiktextract",
scripts=["wiktwords"],
packages=["wiktextract"],
install_requires=["lxml", "wikitextparser"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing",
"Topic :: Text Processing :: Linguistic",
])