forked from asterisk/ari-py
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
executable file
·35 lines (31 loc) · 1.07 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
#!/usr/bin/env python
#
# Copyright (c) 2013, Digium, Inc.
# Copyright (c) 2018, Matthias Urlichs
#
import os
from setuptools import setup
setup(
name="aioari",
version="0.10.0",
license="BSD 3-Clause License",
description="Asynchronous library for accessing the Asterisk REST Interface",
long_description=open(os.path.join(os.path.dirname(__file__),
"README.rst")).read(),
author="Matthias Urlichs",
author_email="[email protected]",
url="https://github.com/M-o-a-T/aioari",
packages=["aioari"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Communications :: Telephony",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
tests_require=["coverage", "httpretty", "pytest"],
install_requires=["aioswagger11"],
)