python-bottle/0003-Added-Python-3.4-3.7-language-classifiers.patch

30 lines
811 B
Diff
Raw Permalink Normal View History

From b0ce05c2a9e6a3e1ff01c5cbd18f7806df5bf7d6 Mon Sep 17 00:00:00 2001
From: Marcel Hellkamp <marc@gsites.de>
Date: Sat, 1 Dec 2018 18:26:43 +0100
Subject: [PATCH] Added Python 3.4-3.7 language classifiers
---
setup.py | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/setup.py b/setup.py
index 84ba762..a03d320 100755
--- a/setup.py
+++ b/setup.py
@@ -36,8 +36,9 @@ setup(name='bottle',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
],
)
-
-
-
--
2.39.0.windows.2