-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
43 lines (39 loc) · 1.36 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
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
version = "2.1.0"
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
README = f.read()
# os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="dj-twilio-sms",
version=version,
packages=find_packages(exclude=['example.*', 'example']),
include_package_data=True,
license="MIT",
description="Twilio SMS Integration for Django",
long_description=README,
keywords='django twilio sms',
url="https://github.com/mastizada/dj-twilio-sms",
author="Emin Mastizada",
author_email="[email protected]",
download_url="https://github.com/mastizada/dj-twilio-sms/zipball/master",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules"
],
install_requires=[
"Django",
"djangorestframework>=2.4.7",
"twilio>=5.6.0",
],
)