cpsms/setup.py

16 lines
350 B
Python
Raw Normal View History

2015-03-24 18:36:09 +00:00
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/>."
),
2015-03-24 18:36:09 +00:00
)