-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 977 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="OTRXMPPLogger",
author='Mike Gogulski',
author_email='[email protected]',
maintainer='Mike Gogulski',
maintainer_email='[email protected]',
url='https://github.com/mikegogulski/python-otrxmpplogger',
version='1.0.3',
packages=['otrxmpplogger', ],
install_requires=[
'xmpppy',
'python-potr',
'otrxmppchannel',
],
license='Unlicense',
description='Logging with OTR (Off-the-Record Messaging) and XMPP',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications :: Chat',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Logging',
],
)