forked from Jajcus/pyxmpp2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·43 lines (39 loc) · 1.43 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
#! /usr/bin/env python
import os.path
import sys
from setuptools import setup
version = "2.0.2"
setup(
name = 'pyxmpp2_scram',
version = version,
description = 'SCRAM implementation from PyXMPP2',
author = 'Jacek Konieczny',
author_email = 'jajcus@jajcus.net',
maintainer = 'Valentin Lorentz',
maintainer_email = 'progval+git@progval.net',
url = 'https://github.com/ProgVal/pyxmpp2-scram/',
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
],
license = 'LGPL',
install_requires = [],
packages = [
'pyxmpp2_scram',
],
)