Last change
on this file since 95:2d57501b5c68 was
91:f9cd8ca1a62d,
checked in by Ralph Meijer <ralphm@…>, 11 years ago
|
Add a twistd plugin to set-up a basic XMPP server that accepts components.
This adds a simple twistd plugin that can be configured to accept s2s
connections for a predefined list of domains, and also accepts External
Component connections that service those domains.
|
File size:
570 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | # Copyright (c) 2003-2010 Ralph Meijer |
---|
4 | # See LICENSE for details. |
---|
5 | |
---|
6 | from setuptools import setup |
---|
7 | |
---|
8 | setup(name='wokkel', |
---|
9 | version='0.6.3', |
---|
10 | description='Twisted Jabber support library', |
---|
11 | author='Ralph Meijer', |
---|
12 | author_email='ralphm@ik.nu', |
---|
13 | maintainer_email='ralphm@ik.nu', |
---|
14 | url='http://wokkel.ik.nu/', |
---|
15 | license='MIT', |
---|
16 | platforms='any', |
---|
17 | packages=[ |
---|
18 | 'wokkel', |
---|
19 | 'wokkel.test', |
---|
20 | 'twisted.plugins', |
---|
21 | ], |
---|
22 | package_data={'twisted.plugins': ['twisted/plugins/server.py']}, |
---|
23 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.