-
Notifications
You must be signed in to change notification settings - Fork 99
/
setup.py
41 lines (39 loc) · 1.29 KB
/
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
34
35
36
37
38
39
40
41
from setuptools import find_packages, setup
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(),
long_description_content_type="text/x-rst",
author="Stefan Foulis",
author_email="[email protected]",
maintainer="Stefan Foulis",
maintainer_email="[email protected]",
packages=find_packages(),
include_package_data=True,
extras_require={
"bulksms": ["requests"],
"celery": ["celery"],
"esendex": ["requests"],
"ovhsms": ["requests"],
"rq": ["django_rq"],
"smssluzbacz": ["smssluzbacz-api"],
"twilio": ["twilio"],
},
test_suite="test",
tests_require=["mock", "django", "requests", "django_rq", "twilio", "celery"],
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
],
)