Skip to content

Commit

Permalink
Merge pull request #179 from singingwolfboy/python-requires
Browse files Browse the repository at this point in the history
setup.py: python_requires
  • Loading branch information
sh4nks committed Jun 22, 2020
2 parents 671ad91 + 2e565cc commit 062401f
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def initialize_options(self):

def run_tests(self):
import shlex

# import here, cause outside the eggs aren't loaded
import pytest

Expand All @@ -80,14 +81,9 @@ def run_tests(self):
packages=find_packages(exclude=("tests",)),
zip_safe=False,
platforms="any",
python_requires=">=3.5",
install_requires=["Flask"],
tests_require=[
"pytest",
"pytest-cov",
"pytest-xprocess",
"pylibmc",
"redis"
],
tests_require=["pytest", "pytest-cov", "pytest-xprocess", "pylibmc", "redis"],
cmdclass={"test": PyTest},
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 062401f

Please sign in to comment.