summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2020-09-13 08:54:12 +0200
committerGitHub <noreply@github.com>2020-09-13 08:54:12 +0200
commit6cb3821bf3b048c7b4182c3d87432c433a5f1a57 (patch)
tree2a3849c872dd7cbcda0d92323811394049ca03a5 /setup.py
parentdb4a9f49286b13a4e9deb810645dd5fc1400b804 (diff)
parent686bf6d3c5b2598952a752e708e5d0419fa64781 (diff)
downloadsqlparse-6cb3821bf3b048c7b4182c3d87432c433a5f1a57.tar.gz
Merge branch 'master' into w503
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 3de94e7..c23968b 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,4 @@
#!/usr/bin/env python
-# -*- coding: utf-8 -*-
#
# Copyright (C) 2009-2018 the sqlparse authors and contributors
# <see AUTHORS file>
@@ -84,21 +83,21 @@ setup(
description='Non-validating SQL parser',
long_description=LONG_DESCRIPTION,
license='BSD',
- python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
+ python_requires=">=3.5",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: Implementation :: CPython',
+ 'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Database',
'Topic :: Software Development',
],