-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 942 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='gsmsapi',
version='0.15',
description='SMS API for (german) SMS providers',
author='Torge Szczepanek',
author_email='debian@cygnusnetworks.de',
maintainer='Torge Szczepanek',
maintainer_email='debian@cygnusnetworks.de',
license='MIT',
packages=['gsmsapi'],
url='https://github.com/CygnusNetworks/python-gsmsapi',
download_url='https://github.com/CygnusNetworks/python-gsmsapi/tarball/v0.15',
keywords=["sms", "german", "sipgate", "smstrade", "api"],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'], # see: https://pypi.python.org/pypi?%3Aaction=list_classifiers
install_requires=["requests"],
)