mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-26 01:43:15 +01:00
14 lines
318 B
Python
14 lines
318 B
Python
"""wal - setup.py"""
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="wal",
|
|
version="0.1",
|
|
author="Dylan Araps",
|
|
author_email="dylan.araps@gmail.com",
|
|
description="🎨 Generate and change colorschemes on the fly",
|
|
license="MIT",
|
|
url="https://github.com/dylanaraps/wal.py",
|
|
scripts=["wal"]
|
|
)
|