Visualisierung der Messdaten des DWD https://wetter.clerie.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
433 B
18 lines
433 B
#!/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(),
|
|
)
|
|
|