-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (27 loc) · 893 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='OTRXMPPChannel',
author='Mike Gogulski',
author_email='mike@gogulski.com',
maintainer='Mike Gogulski',
maintainer_email='mike@gogulski.com',
url='https://github.com/mikegogulski/python-otrxmppchannel',
version='1.0.4',
packages=['otrxmppchannel', ],
install_requires=[
'python-potr',
'xmpppy', ],
license='Unlicense',
description='An OTR-XMPP communications channel',
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',
]
)