Updated setup.py

This commit is contained in:
Frisk 2021-05-15 13:03:30 +02:00
parent 6fc912d3d4
commit 04904aebda
No known key found for this signature in database
GPG key ID: 213F7C15068AF8AC

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name='RcGcDw', name='RcGcDw',
version='1.12', version='1.14',
packages=[''], packages=[''],
url='https://gitlab.com/piotrex43/RcGcDw/', url='https://gitlab.com/piotrex43/RcGcDw/',
license='GNU GPLv3', license='GNU GPLv3',
@ -12,5 +12,5 @@ setup(
keywords=['MediaWiki', 'recent changes', 'Discord', 'webhook'], keywords=['MediaWiki', 'recent changes', 'Discord', 'webhook'],
package_dir={"": "src"}, package_dir={"": "src"},
install_requires=["beautifulsoup4 >= 4.6.0", "requests >= 2.18.4", "schedule >= 0.5.0", "lxml >= 4.2.1"], install_requires=["beautifulsoup4 >= 4.6.0", "requests >= 2.18.4", "schedule >= 0.5.0", "lxml >= 4.2.1"],
python_requires="3.6" python_requires="3.7"
) )