summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-08-12 18:44:00 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-08-12 18:44:00 +1000
commitc511ab91e9b20faaa8ebfa9470c34ebe79108bab (patch)
tree97b50e89b955639c8a929a317885c5009ddd84cb
parentdffe14180dc89cb53469565bb9f2fcd2407667fc (diff)
setup.py: version bump
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index ba498a4..8855e71 100644
--- a/setup.py
+++ b/setup.py
@@ -33,13 +33,14 @@ setuptools.setup(
"Environment :: X11 Applications",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
+ "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
packages=["pywal"],
entry_points={
"console_scripts": ["wal=pywal.__main__:main"]
},
- python_requires=">=3.6",
+ python_requires=">=3.5",
test_suite="tests",
include_package_data=True
)