forked from digium/PySwitchvox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 971 Bytes
/
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
#!/usr/bin/env python
"""PySwitchvox
Copyright (C) 2015, Digium, Inc.
Matthew Jordan <[email protected]>
"""
import os
from setuptools import setup
setup(
name="pyswitchvox",
version="0.0.3",
license="BSD 3-Clause License",
description="Library for accessing the Switchvox Extend API",
long_description=open(os.path.join(os.path.dirname(__file__),
"README.rst")).read(),
author="Digium, Inc.",
author_email="[email protected]",
url="https://github.com/digium/pyswitchvox",
packages=["pyswitchvox"],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
tests_require=[],
install_requires=["requests>=2.8.1"],
)