mirror of
https://gitlab.com/chicken-riders/RcGcDw.git
synced 2025-02-22 00:14:10 +00:00
16 lines
517 B
Python
16 lines
517 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='RcGcDw',
|
|
version='1.15.0.2',
|
|
url='https://gitlab.com/piotrex43/RcGcDw/',
|
|
license='GNU GPLv3',
|
|
author='Frisk',
|
|
author_email='piotrex43@protonmail.ch',
|
|
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", "lxml >= 4.2.1"],
|
|
python_requires=">=3.7"
|
|
)
|