Preparing for packaging.
This commit is contained in:
parent
96b923642b
commit
95fad96c3a
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
|
@ -0,0 +1,2 @@
|
|||
include COPYING.txt
|
||||
include examples.py
|
0
cpsms/__init__.py
Normal file
0
cpsms/__init__.py
Normal file
21
setup.py
Normal file
21
setup.py
Normal 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',
|
||||
]
|
||||
)
|
Loading…
Reference in a new issue