forked from telephonyresearch/python-opencnam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (38 loc) · 1.39 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
44
45
from setuptools import find_packages, setup
setup(
# Basic package information.
name = 'opencnam',
version = '0.5',
packages = find_packages(),
# Packaging options.
zip_safe = False,
include_package_data = True,
# Package dependencies.
install_requires = ['requests>=0.13.2'],
# Metadata for PyPI.
author = 'Randall Degges',
author_email = '[email protected]',
license = 'UNLICENSE',
url = 'http://www.opencnam.com',
keywords = 'voip http api rest caller id name cid cnam telephony ' \
'telephone python library',
description = 'A simple python library for getting caller ID name ' \
'information using the opencnam API.',
long_description = open('README.md').read(),
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Telecommunications Industry',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Communications',
'Topic :: Communications :: Internet Phone',
'Topic :: Communications :: Telephony',
'Topic :: Internet',
'Topic :: Utilities',
],
)