root/setup.py

Revision 72, 1.4 kB (checked in by Dan Pascu <dan@ag-projects.com>, 12 months ago)

Do not copy config.ini.sample as it is into /etc/openxcap/

Line 
1#!/usr/bin/python
2
3from distutils.core import setup, Extension
4from xcap import __version__
5
6setup(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
13configuration data stored in XML format on a server. XCAP maps XML document
14sub-trees and element attributes to HTTP URIs, so that these components can
15be directly accessed by HTTP. An XCAP server is used by the XCAP clients to
16store data like Presence policy in combination with a SIP Presence server
17that supports PUBLISH/SUBSCRIBE/NOTIFY methods to provide a complete
18[http://www.tech-invite.com/Ti-sip-WGs.html#wg-simple SIP SIMPLE] server
19solution.""",
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      )
Note: See TracBrowser for help on using the browser.