forked from barrust/mediawiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (61 loc) · 1.82 KB
/
setup.py
File metadata and controls
66 lines (61 loc) · 1.82 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
""" Module Installation script """
import setuptools
import io
from mediawiki import (
__version__,
__author__,
__license__,
__email__,
__url__,
__bugtrack_url__,
)
def read_file(filepath):
""" read the file """
with io.open(filepath, "r") as filepointer:
res = filepointer.read()
return res
KEYWORDS = [
"python",
"mediawiki",
"wikipedia",
"API",
"wiki",
"parser",
"natural language processing",
"nlp",
]
setuptools.setup(
name="pymediawiki", # mediawiki was taken
version=__version__,
author=__author__,
author_email=__email__,
description="Wikipedia and MediaWiki API wrapper for Python",
license=__license__,
keywords=" ".join(KEYWORDS),
url=__url__,
download_url="{0}/tarball/v{1}".format(__url__, __version__),
bugtrack_url=__bugtrack_url__,
install_requires=read_file("./requirements/python").splitlines(),
packages=["mediawiki"],
long_description=read_file("README.rst"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki",
"License :: OSI Approved",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
test_suite="tests",
)