forked from muromec/flask-sms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 869 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
28
from setuptools import setup
setup(
name='Flask-SMS',
version='0.1.0',
url='http://github.com/muromec/flask_sms',
download_url='https://github.com/dcrosta/flask-pymongo/tags',
license='BSD',
author='Ilya Petrov',
author_email='[email protected]',
description='SMS sending for flask apps',
zip_safe=False,
platforms='any',
packages=["flask_sms"],
install_requires=[
'Flask >= 0.8',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)