forked from tatuylonen/wikitextprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (46 loc) · 1.94 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
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python3
#
# Copyright (c) 2020-2021 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="wikitextprocessor",
version="0.4.96",
description="Parser and expander for Wikipedia, Wiktionary etc. dump files, with Lua execution support",
long_description=long_description,
long_description_content_type="text/markdown",
author="Tatu Ylonen",
author_email="[email protected]",
url="https://github.com/tatuylonen/wikitextprocessor",
license="MIT (some included files have other free licences)",
download_url="https://github.com/tatuylonen/wikitextprocessor",
scripts=[],
packages=["wikitextprocessor"],
package_data={"wikitextprocessor":
["lua/*.lua",
"lua/mediawiki-extensions-Scribunto/COPYING",
"lua/mediawiki-extensions-Scribunto/includes/engines/LuaCommon/lualib/*.lua",
"lua/mediawiki-extensions-Scribunto/includes/engines/LuaCommon/lualib/ustring/*.lua",
"lua/mediawiki-extensions-Scribunto/includes/engines/LuaCommon/lualib/luabit/*.lua"]},
install_requires=["lupa", "dateparser", "lru-dict"],
keywords=[
"dictionary",
"wiktionary",
"wikipedia",
"data extraction",
"wikitext",
"scribunto",
"lua",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing",
"Topic :: Text Processing :: Linguistic",
])