basic package structure
This commit is contained in:
parent
c69c5482f0
commit
927011f624
5 changed files with 406 additions and 378 deletions
15
setup.py
Normal file
15
setup.py
Normal 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"],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue