forked from niwinz/django-sendsms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1001 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
29
30
31
32
33
from setuptools import setup, find_packages
version = __import__('sendsms').__version__
setup(
name="django-sendsms",
version=version,
url='http://github.com/stefanfoulis/django-sendsms',
license='BSD',
platforms=['OS Independent'],
description="A simple API to send SMS messages.",
long_description=open('README.rst').read(),
author='Stefan Foulis',
author_email='[email protected]',
maintainer='Stefan Foulis',
maintainer_email='[email protected]',
packages=find_packages(),
include_package_data=True,
extras_require = {
'esendex': ['requests'],
'twilio': ['twilio'],
},
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)