huepaper/setup.py

16 lines
418 B
Python
Raw Normal View History

2021-07-14 19:26:04 +03:00
from setuptools import setup
setup(
name="huepaper",
version="0.0.1",
author="Denis Lehmann",
author_email="denis@opaque.tech",
scripts=["bin/huepaper"],
packages=["huepaper"],
url="https://git.opaque.tech/denis/huepaper",
license="LICENSE",
description="A colorful wallpaper generator",
long_description=open("README.org").read(),
install_requires=["colour", "pillow"],
)