RcGcDw/setup.py

18 lines
594 B
Python
Raw Permalink Normal View History

from setuptools import setup
setup(
name='RcGcDw',
2021-10-14 10:29:45 +00:00
version='1.14.0.1',
2020-07-07 11:21:49 +00:00
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"],
2021-10-30 11:53:35 +00:00
extras_require=["matplotlib => 3.4.3"],
2021-05-15 11:03:30 +00:00
python_requires="3.7"
)