1
0
Fork 0
mirror of synced 2024-04-26 08:22:20 +12:00

setup.py: add minimum python requirement (#287)

This commit is contained in:
Ali Parlakçı 2021-05-06 17:16:10 +03:00 committed by GitHub
parent a2e22e894a
commit db8b1c7547
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -4,7 +4,7 @@ description_file = README.md
description_content_type = text/markdown
home_page = https://github.com/aliparlakci/bulk-downloader-for-reddit
keywords = reddit, download, archive
version = 2.0.3
version = 2.0.0
author = Ali Parlakci
author_email = parlakciali@gmail.com
maintainer = Serene Arc
@ -16,7 +16,6 @@ classifiers =
Natural Language :: English
Environment :: Console
Operating System :: OS Independent
requires_python = >=3.9
platforms = any
[files]

View file

@ -3,4 +3,4 @@
from setuptools import setup
setup(setup_requires=['pbr', 'appdirs'], pbr=True, data_files=[('config', ['bdfr/default_config.cfg'])])
setup(setup_requires=['pbr', 'appdirs'], pbr=True, data_files=[('config', ['bdfr/default_config.cfg'])], python_requires='>=3.9.0')