summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 12d6e62..4d306af 100644
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,6 @@ classes = """
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
- Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
@@ -46,6 +45,7 @@ def add_default(m):
def add_doc(m):
return (('doc', m.groups()[0]),)
+
pats = {re_meta: add_default,
re_doc: add_doc}
here = os.path.abspath(os.path.dirname(__file__))
@@ -102,6 +102,7 @@ class pytest(setuptools.command.test.test):
pytest_args = self.pytest_args.split(' ')
sys.exit(pytest.main(pytest_args))
+
setuptools.setup(
name=NAME,
packages=setuptools.find_packages(exclude=['ez_setup', 't', 't.*']),
@@ -116,7 +117,7 @@ setuptools.setup(
platforms=['any'],
license='BSD',
classifiers=classifiers,
- 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.4.*",
install_requires=reqs('default.txt'),
tests_require=reqs('test.txt'),
cmdclass={'test': pytest},