forked from TIBHannover/confiDent-mediawikitools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 851 Bytes
/
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
from setuptools import setup
from pathlib import Path
README_path = Path.cwd() / 'README.md'
with open(README_path, 'r') as README_f:
README = README_f.read()
setup(
name='mediawikitools',
version='0.1.0',
packages=['mediawikitools', 'mediawikitools/wiki',
'mediawikitools/utilities'],
url='',
license='MIT License',
author='Andre Castro',
author_email='andre.castro@tib.eu',
description='A series of Python mwclient library wrappers, to perform '
'actions in Mediawiki instances',
long_description=README,
long_description_content_type='text/markdown',
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 3.7'],
keywords='mediawiki wikipedia',
install_requires=['mwclient', 'pyyaml'],
test_require=['pytest']
)