forked from xmpppy/xmpppy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·49 lines (47 loc) · 1.74 KB
/
setup.py
File metadata and controls
executable file
·49 lines (47 loc) · 1.74 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
# Set proper release version in source code also!!!
setup(name='xmpppy',
version='0.7.0',
author='Alexey Nezhdanov',
author_email='snakeru@users.sourceforge.net',
url='https://github.com/xmpppy/xmpppy',
description='XMPP implementation in Python',
long_description=README,
download_url='https://pypi.org/project/xmpppy/',
packages=['xmpp'],
license="GPL",
platforms="All",
keywords=['jabber', 'xmpp', 'RFC3920', 'RFC3921'],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Database",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Networking",
"Topic :: Text Processing",
"Topic :: Utilities",
],
entry_points={
'console_scripts': [
'xmpp-message = xmpp.cli:simple_message',
],
},
install_requires="six",
)