Preparing for packaging.

This commit is contained in:
Mikkel Munch Mortensen 2015-03-24 19:36:09 +01:00
parent 96b923642b
commit 95fad96c3a
4 changed files with 23 additions and 0 deletions

2
MANIFEST.in Normal file
View file

@ -0,0 +1,2 @@
include COPYING.txt
include examples.py

0
cpsms/__init__.py Normal file
View file

21
setup.py Normal file
View file

@ -0,0 +1,21 @@
from distutils.core import setup
setup(
name='cpsms',
packages=['cpsms'],
version='0.1',
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/>.',
classifiers = [
'Programming Language :: Python',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Communications :: Telephony',
]
)