forked from rdegges/django-twilio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (22 loc) · 760 Bytes
/
setup.py
File metadata and controls
30 lines (22 loc) · 760 Bytes
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
from os.path import abspath, dirname, join, normpath
from setuptools import find_packages, setup
from django_twilio import __version__ as version
setup(
# Basic package information:
name = 'django-twilio',
version = version,
packages = find_packages(),
# Packaging options:
zip_safe = False,
include_package_data = True,
# Package dependencies:
install_requires = ['twilio>=2.0.10'],
# Metadata for PyPI:
author = 'Randall Degges',
author_email = 'rdegges@gmail.com',
license = 'UNLICENSE',
url = 'http://twilio.com/',
keywords = 'twilio telephony call phone voip sms',
description = 'A simple library for building twilio-powered Django webapps.',
long_description = open(normpath(join(dirname(abspath(__file__)), 'README'))).read()
)