summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-06-26 10:23:43 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-06-26 10:23:43 +1000
commiteab524f372f49560009c327e61eb61f01d078f5a (patch)
tree86ea07aa29d5986705df5b06eee588e7b23065d7 /setup.py
parent358a2d3a9f755b95d3fe6c2e1b7cc38b4c50970a (diff)
General: Changes
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 0a3b76b..01e2096 100644
--- a/setup.py
+++ b/setup.py
@@ -1,8 +1,8 @@
"""wal - setup.py"""
from setuptools import setup
-
import pywal
+
DESC = (
"View the DOCS at: https://github.com/dylanaraps/pywal\n\n"
"Pypi doesn't like markdown OR rst with anchor links so "
@@ -10,19 +10,21 @@ DESC = (
)
DESC = "".join(DESC)
-version = pywal.__version__
-download_url = f"https://github.com/dylanaraps/pywal/archive/{version}.tar.gz"
+
+VERSION = pywal.__version__
+DOWNLOAD_URL = f"https://github.com/dylanaraps/pywal/archive/{VERSION}.tar.gz"
+
setup(
name="pywal",
- version=version,
+ version=VERSION,
author="Dylan Araps",
author_email="dylan.araps@gmail.com",
description="🎨 Generate and change colorschemes on the fly",
long_description=DESC,
license="MIT",
url="https://github.com/dylanaraps/pywal",
- download_url=download_url,
+ download_url=DOWNLOAD_URL,
classifiers=[
"Environment :: X11 Applications",
"License :: OSI Approved :: MIT License",