-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.23 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
from distutils.core import setup
setup(
name = "sipxmldevices",
packages = ["sipxmldevices"],
version = "0.0.1",
description = "python module for fast and easy XML creation for SIP Devices",
author = "Andrea Mucci",
author_email = "[email protected]",
url = "https://github.com/ogonbat/sipxmldevices",
keywords = ["aastra", "sip", "xml", "cisco", "snom"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
Python Module For Fast and easy XML creation for SIP Devices
-------------------------------------
Now we support only Aastra SIP Devices
Work with
- All Aastra SIP Phones of 67xxi serie ( 6730i, 6731i, 6735i, 6737i, 6753i, 6755i, 6757i, 6739i )
Support
- All XML Root commands ( latest firmware release 3.2.2 )
- Support ISO-8859-1 and UTF-8
This version requires Python 2 or later;
"""
)