diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..72af599 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include COPYING.txt +include examples.py diff --git a/cpsms/__init__.py b/cpsms/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/cpsms.py b/cpsms/cpsms.py similarity index 100% rename from cpsms.py rename to cpsms/cpsms.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0c670fc --- /dev/null +++ b/setup.py @@ -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 .', + 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', + ] +)