pywal/setup.py

42 lines
1.0 KiB
Python
Raw Normal View History

2017-06-20 12:42:47 +02:00
"""wal - setup.py"""
from setuptools import setup
import pywal
2017-06-22 06:29:26 +02:00
2017-06-26 02:23:43 +02:00
2017-06-22 06:45:58 +02:00
DESC = (
2017-06-24 01:30:05 +02:00
"View the DOCS at: https://github.com/dylanaraps/pywal\n\n"
2017-06-22 06:45:58 +02:00
"Pypi doesn't like markdown OR rst with anchor links so "
"you'll have to view the documentation elsewhere.\n"
)
DESC = "".join(DESC)
2017-06-22 06:29:26 +02:00
2017-06-26 02:23:43 +02:00
VERSION = pywal.__version__
2017-06-26 02:23:43 +02:00
DOWNLOAD_URL = f"https://github.com/dylanaraps/pywal/archive/{VERSION}.tar.gz"
2017-06-22 06:29:26 +02:00
2017-06-20 12:42:47 +02:00
setup(
2017-06-22 06:10:44 +02:00
name="pywal",
2017-06-26 02:23:43 +02:00
version=VERSION,
2017-06-20 12:42:47 +02:00
author="Dylan Araps",
author_email="dylan.araps@gmail.com",
description="🎨 Generate and change colorschemes on the fly",
2017-06-22 06:29:26 +02:00
long_description=DESC,
2017-06-20 12:42:47 +02:00
license="MIT",
2017-06-24 01:30:05 +02:00
url="https://github.com/dylanaraps/pywal",
2017-06-26 02:23:43 +02:00
download_url=DOWNLOAD_URL,
2017-06-22 15:19:28 +02:00
classifiers=[
"Environment :: X11 Applications",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
],
packages=['pywal'],
entry_points={
"console_scripts": [
"wal=pywal.__main__:main"
]
},
python_requires=">=3.6"
2017-06-20 12:42:47 +02:00
)