basic package structure

This commit is contained in:
Denis Lehmann 2021-07-14 18:26:04 +02:00
parent c69c5482f0
commit 927011f624
5 changed files with 406 additions and 378 deletions

15
setup.py Normal file
View file

@ -0,0 +1,15 @@
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"],
)