huepaper/setup.py
Denis Lehmann 32d83f1820 add numpy
2021-11-24 08:40:12 +01:00

22 lines
552 B
Python

from setuptools import setup
import os
import shutil
if not os.path.exists("bin"):
os.makedirs("bin")
shutil.copyfile("huepaper.py", "bin/huepaper")
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", "numpy", "pillow"],
)