mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-25 17:33:09 +01:00
general: Add pyroma.
This commit is contained in:
parent
1155d190b8
commit
926ec57559
@ -21,9 +21,10 @@ before_install:
|
|||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y imagemagick; fi
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y imagemagick; fi
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pip install flake8 pylint
|
- pip install flake8 pylint pyroma
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- flake8 pywal tests setup.py
|
- flake8 pywal tests setup.py
|
||||||
- pylint pywal tests setup.py
|
- pylint pywal tests setup.py
|
||||||
|
- pyroma .
|
||||||
- python setup.py test
|
- python setup.py test
|
||||||
|
4
setup.py
4
setup.py
@ -24,6 +24,7 @@ setuptools.setup(
|
|||||||
author_email="dylan.araps@gmail.com",
|
author_email="dylan.araps@gmail.com",
|
||||||
description="Generate and change colorschemes on the fly",
|
description="Generate and change colorschemes on the fly",
|
||||||
long_description=LONG_DESC,
|
long_description=LONG_DESC,
|
||||||
|
keywords="wal colorscheme terminal-emulators changing-colorschemes",
|
||||||
license="MIT",
|
license="MIT",
|
||||||
url="https://github.com/dylanaraps/pywal",
|
url="https://github.com/dylanaraps/pywal",
|
||||||
download_url=DOWNLOAD,
|
download_url=DOWNLOAD,
|
||||||
@ -38,4 +39,5 @@ setuptools.setup(
|
|||||||
entry_points={"console_scripts": ["wal=pywal.__main__:main"]},
|
entry_points={"console_scripts": ["wal=pywal.__main__:main"]},
|
||||||
python_requires=">=3.5",
|
python_requires=">=3.5",
|
||||||
test_suite="tests",
|
test_suite="tests",
|
||||||
include_package_data=True)
|
include_package_data=True,
|
||||||
|
zip_safe=False)
|
||||||
|
Loading…
Reference in New Issue
Block a user