RcGcDw/setup.py

16 lines
517 B
Python
Raw Permalink Normal View History

from setuptools import setup
setup(
name='RcGcDw',
2022-07-14 23:49:21 +00:00
version='1.15.0.1',
2020-07-07 11:21:49 +00:00
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"},
2022-06-15 17:43:24 +00:00
install_requires=["beautifulsoup4 >= 4.6.0", "requests >= 2.18.4", "lxml >= 4.2.1"],
python_requires=">=3.7"
)