-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 1.08 KB
/
setup.py
File metadata and controls
35 lines (30 loc) · 1.08 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
import sys
import suelta
VERSION = suelta.__version__
DESCRIPTION = 'Suelta - A pure-Python SASL client library'
LONG_DESCRIPTION = """
Suelta is a SASL library, providing you with authentication and in some
cases security layers.
It supports a wide range of typical SASL mechanisms, including the MTI for
all known protocols.
"""
CLASSIFIERS = ['Intended Audience :: Developers',
'License :: OSI Approved :: MIT',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules']
PACKAGES = ['suelta', 'suelta/mechanisms']
setup(
name = "suelta",
version = VERSION,
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
author = 'Dave Cridland',
author_email = 'dwd',
url = 'http://github.com/dwd/suelta',
license = 'MIT',
platforms = ['any'],
packages = PACKAGES
)