forked from levensailor/ciscoaxl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 985 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
35
36
37
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="ciscoaxl",
version="0.14",
author="Jeff Levensailor",
author_email="[email protected]",
description="Cisco CUCM AXL Library. Simple to use.",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/levensailor/ciscoaxlsdk",
keywords=['Cisco', 'Call Manager', 'CUCM', 'AXL', 'VoIP'],
packages=['ciscoaxl'],
package_data={
'ciscoaxl': [
'*.wsdl',
'*.xsd',
'schema/*/*'
],
},
include_package_data=True,
install_requires = [
'zeep==3.4.0',
'urllib3==1.23',
'requests==2.22.0',
'six==1.12.0'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)