-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 1.03 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
from setuptools import setup, find_packages
install_requires = open('requirements.txt').readlines()
tests_requires = ["unittest2", "mock"]
setup(name='squirrelapi',
description='Python wrapper for C3 Squirrel Voicemail HTTP API',
author='Mobile Oxford',
author_email='mobileoxford@oucs.ox.ac.uk',
url='https://github.com/ox-it/python-squirrelapi',
version='0.6.1',
py_modules=['squirrel_api', 'squirrel_api.api', 'squirrel_api.exceptions'],
setup_requires=["setuptools"],
install_requires=install_requires,
tests_require=tests_requires,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications :: Telephony',
'Topic :: Communications :: Internet Phone',
],
test_suite = "tests",
)