| 1 | #!/usr/bin/python |
|---|
| 2 | |
|---|
| 3 | from distutils.core import setup, Extension |
|---|
| 4 | from xcap import __version__ |
|---|
| 5 | |
|---|
| 6 | setup(name = "openxcap", |
|---|
| 7 | version = __version__, |
|---|
| 8 | author = "Mircea Amarascu", |
|---|
| 9 | author_email = "mircea@ag-projects.com", |
|---|
| 10 | url = "http://openxcap.org/", |
|---|
| 11 | description = "An open source XCAP server.", |
|---|
| 12 | long_description = """XCAP protocol allows a client to read, write, and modify application |
|---|
| 13 | configuration data stored in XML format on a server. XCAP maps XML document |
|---|
| 14 | sub-trees and element attributes to HTTP URIs, so that these components can |
|---|
| 15 | be directly accessed by HTTP. An XCAP server is used by the XCAP clients to |
|---|
| 16 | store data like Presence policy in combination with a SIP Presence server |
|---|
| 17 | that supports PUBLISH/SUBSCRIBE/NOTIFY methods to provide a complete |
|---|
| 18 | [http://www.tech-invite.com/Ti-sip-WGs.html#wg-simple SIP SIMPLE] server |
|---|
| 19 | solution.""", |
|---|
| 20 | license = "BSD", |
|---|
| 21 | platforms = ["Platform Independent"], |
|---|
| 22 | classifiers = [ |
|---|
| 23 | "Development Status :: 4 - Beta", |
|---|
| 24 | "Intended Audience :: Service Providers", |
|---|
| 25 | "License :: OSI Approved :: Berkeley Software Distribution License (BSD)", |
|---|
| 26 | "Operating System :: OS Independent", |
|---|
| 27 | "Programming Language :: Python", |
|---|
| 28 | ], |
|---|
| 29 | packages = ['xcap', 'xcap.appusage', 'xcap.interfaces', 'xcap.interfaces.backend', 'xcap.test'], |
|---|
| 30 | scripts = ['openxcap'], |
|---|
| 31 | package_data = {'xcap': ['xml-schemas/*']} |
|---|
| 32 | ) |
|---|