Add setup.py

This commit is contained in:
clerie 2021-01-24 13:56:53 +01:00
parent ccc89c80ba
commit 74b8a6b411
1 changed files with 18 additions and 0 deletions

18
setup.py Normal file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env python3
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="wetter",
version="0.0.1",
author="clerie",
author_email="hallo@clerie.de",
description="Wetter",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.clerie.de/clerie/wetter",
packages=setuptools.find_packages(),
)