We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 117070c + 92737fa commit 945a733Copy full SHA for 945a733
setup.py
@@ -62,14 +62,15 @@ def package_vars(version_file):
62
"Programming Language :: Python :: 3.6",
63
"Programming Language :: Python :: 3.7",
64
],
65
+ python_requires=">=3.6",
66
# What does your project relate to?
67
keywords="skeleton",
68
packages=find_packages(where="src"),
69
package_dir={"": "src"},
70
package_data={"example": ["data/*.txt"]},
71
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
72
include_package_data=True,
- install_requires=["docopt", "setuptools"],
73
+ install_requires=["docopt", "setuptools >= 24.2.0"],
74
extras_require={
75
"test": [
76
"pre-commit",
0 commit comments