cpsms/setup.py
2021-11-03 14:25:53 +01:00

16 lines
350 B
Python

from distutils.core import setup
setup(
name="cpsms",
packages=["cpsms"],
version="2.0",
author="Mikkel Munch Mortensen",
author_email="3xm@detfalskested.dk",
url="https://github.com/decibyte/cpsms",
description=(
"A Python wrapper around the SMS gateway from "
"CPSMS <https://www.cpsms.dk/>."
),
)