mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-02-18 03:01:03 +01:00
Use README.md on pypi
This commit is contained in:
parent
c787174f75
commit
238d07ce41
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
[![PyPI](https://img.shields.io/pypi/v/pywal.svg)](https://pypi.python.org/pypi/pywal/) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md) [![Build Status](https://travis-ci.org/dylanaraps/pywal.svg?branch=master)](https://travis-ci.org/dylanaraps/pywal)
|
[![PyPI](https://img.shields.io/pypi/v/pywal.svg)](https://pypi.python.org/pypi/pywal/) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md) [![Build Status](https://travis-ci.org/dylanaraps/pywal.svg?branch=master)](https://travis-ci.org/dylanaraps/pywal)
|
||||||
|
|
||||||
**\[[Installation](https://github.com/dylanaraps/pywal/wiki/Installation)\] \[[Getting Started](https://github.com/dylanaraps/pywal/wiki/Getting-Started)\] \[[Customization](https://github.com/dylanaraps/pywal/wiki/Customization)\] \[[Wiki](https://github.com/dylanaraps/pywal/wiki)\]**
|
\[[Installation](https://github.com/dylanaraps/pywal/wiki/Installation)\] \[[Getting Started](https://github.com/dylanaraps/pywal/wiki/Getting-Started)\] \[[Customization](https://github.com/dylanaraps/pywal/wiki/Customization)\] \[[Wiki](https://github.com/dylanaraps/pywal/wiki)\]
|
||||||
|
|
||||||
`wal` is a script that takes an image (or a directory of images), generates a colorscheme (using `imagemagick`) and then changes all of your open terminal's colors to the new colorscheme on the fly. `wal` then caches each generated colorscheme so that cycling through wallpapers while changing colorschemes is instantaneous.
|
`wal` is a script that takes an image (or a directory of images), generates a colorscheme (using `imagemagick`) and then changes all of your open terminal's colors to the new colorscheme on the fly. `wal` then caches each generated colorscheme so that cycling through wallpapers while changing colorschemes is instantaneous.
|
||||||
|
|
||||||
|
13
setup.py
13
setup.py
@ -8,11 +8,12 @@ except (ImportError, SyntaxError):
|
|||||||
quit(1)
|
quit(1)
|
||||||
|
|
||||||
|
|
||||||
DESC = (
|
try:
|
||||||
"View the DOCS at: https://github.com/dylanaraps/pywal\n\n"
|
import pypandoc
|
||||||
"Pypi doesn't like markdown OR rst with anchor links so "
|
LONG_DESC = pypandoc.convert("README.md", "rst")
|
||||||
"you'll have to view the documentation elsewhere.\n"
|
except(IOError, ImportError):
|
||||||
)
|
LONG_DESC = open('README.md').read()
|
||||||
|
|
||||||
|
|
||||||
VERSION = pywal.__version__
|
VERSION = pywal.__version__
|
||||||
DOWNLOAD = "https://github.com/dylanaraps/pywal/archive/%s.tar.gz" % VERSION
|
DOWNLOAD = "https://github.com/dylanaraps/pywal/archive/%s.tar.gz" % VERSION
|
||||||
@ -24,7 +25,7 @@ setuptools.setup(
|
|||||||
author="Dylan Araps",
|
author="Dylan Araps",
|
||||||
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=DESC,
|
long_description=LONG_DESC,
|
||||||
license="MIT",
|
license="MIT",
|
||||||
url="https://github.com/dylanaraps/pywal",
|
url="https://github.com/dylanaraps/pywal",
|
||||||
download_url=DOWNLOAD,
|
download_url=DOWNLOAD,
|
||||||
|
Loading…
Reference in New Issue
Block a user