diff --git a/setup.py b/setup.py index 62aa03c..674c825 100644 --- a/setup.py +++ b/setup.py @@ -73,6 +73,10 @@ 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], packages=[ 'rethinkdb', @@ -95,9 +99,10 @@ 'rethinkdb-repl = rethinkdb.__main__:startInterpreter' ] }, - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", + python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, >=3.5", install_requires=[ - 'six' + 'six', + 'looseversion' ], test_suite='tests' )