19 lines
454 B
Python
19 lines
454 B
Python
#!/usr/bin/env python3
|
|
|
|
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="uptime-status",
|
|
version="0.0.1",
|
|
author="clerie",
|
|
author_email="hallo@clerie.de",
|
|
description="Uptime Status",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://git.clerie.de/clerie/uptime-status",
|
|
packages=setuptools.find_packages(),
|
|
)
|