huepaper/setup.py

22 lines
552 B
Python
Raw Normal View History

2021-07-14 19:26:04 +03:00
from setuptools import setup
2021-07-15 10:43:43 +03:00
import os
import shutil
if not os.path.exists("bin"):
os.makedirs("bin")
shutil.copyfile("huepaper.py", "bin/huepaper")
2021-07-14 19:26:04 +03:00
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(),
2021-11-24 09:40:12 +02:00
install_requires=["colour", "numpy", "pillow"],
2021-07-14 19:26:04 +03:00
)