RcGcDw/setup.py

17 lines
549 B
Python
Raw Permalink Normal View History

from setuptools import setup
setup(
name='RcGcDw',
2020-07-07 11:21:49 +00:00
version='1.12',
packages=[''],
url='https://gitlab.com/piotrex43/RcGcDw/',
license='GNU GPLv3',
author='Frisk',
author_email='piotrex43@protonmail.ch',
2020-07-07 11:21:49 +00:00
description='A set od scripts to fetch recent changes from MediaWiki wiki to a Discord channel using a webhook',
keywords=['MediaWiki', 'recent changes', 'Discord', 'webhook'],
package_dir={"": "src"},
install_requires=["beautifulsoup4 >= 4.6.0", "requests >= 2.18.4", "schedule >= 0.5.0", "lxml >= 4.2.1"],
python_requires="3.6"
)