From 6cb1b29ed03f5d066ea48356644ebc9a1ab86bf7 Mon Sep 17 00:00:00 2001 From: Andreas Boltres Date: Thu, 17 Mar 2022 12:38:05 +0100 Subject: [PATCH] Minor fix in about file --- vp_suite/__about__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vp_suite/__about__.py b/vp_suite/__about__.py index 9ff1aca..b08d69f 100644 --- a/vp_suite/__about__.py +++ b/vp_suite/__about__.py @@ -14,6 +14,7 @@ __source_url__ = "https://github.com/AIS-Bonn/vp-suite" __tracker_url__ = "https://github.com/AIS-Bonn/vp-suite/issues" __docs__ = ( "A Framework for Training and Evaluating Video Prediction Models" ) +__python_requires__ = ">=3.6" __keywords__ = ["deep learning", "pytorch", "AI", "video prediction"] __classifiers__ = [ "Environment :: Console", @@ -22,8 +23,7 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3 :: Only", - ], -__python_requires__ = ">=3.6" + ] __all__ = ["__name__", "__version__", "__author__", "__author_email__", "__license__", "__copyright__", "__homepage__", "__docs_url__", "__source_url__",