summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml3
-rw-r--r--setup.py4
2 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 2ec3221..ce6e603 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,9 +21,10 @@ before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y imagemagick; fi
install:
- - pip install flake8 pylint
+ - pip install flake8 pylint pyroma
script:
- flake8 pywal tests setup.py
- pylint pywal tests setup.py
+ - pyroma .
- python setup.py test
diff --git a/setup.py b/setup.py
index 6d31b62..f950220 100644
--- a/setup.py
+++ b/setup.py
@@ -24,6 +24,7 @@ setuptools.setup(
author_email="dylan.araps@gmail.com",
description="Generate and change colorschemes on the fly",
long_description=LONG_DESC,
+ keywords="wal colorscheme terminal-emulators changing-colorschemes",
license="MIT",
url="https://github.com/dylanaraps/pywal",
download_url=DOWNLOAD,
@@ -38,4 +39,5 @@ setuptools.setup(
entry_points={"console_scripts": ["wal=pywal.__main__:main"]},
python_requires=">=3.5",
test_suite="tests",
- include_package_data=True)
+ include_package_data=True,
+ zip_safe=False)