summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 469b5b1..9dcdb8e 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,6 @@
-import sys
import os
+import sys
+
from setuptools import setup, Command, find_packages
# Pull version from source without importing
@@ -23,6 +24,8 @@ class Tox(Command):
test_require = ['tox', 'mock']
+if sys.version_info < (2, 7):
+ test_require.append('unittest2')
here = os.path.abspath(os.path.dirname(__file__))
@@ -51,7 +54,6 @@ setup(
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",