-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (31 loc) · 1.1 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
# setup.py
# coding=utf-8
# pywsse
# Authors: Rushy Panchal, Naphat Sanguansin, Adam Libresco, Jérémie Lumbroso
# Date: August 31st, 2016
# Description: Setuptools configuration.
from setuptools import setup, find_packages
setup(
name = 'pywsse',
packages = find_packages(),
version = '0.1.5.2',
description = 'WSSE Authentication for various server and client backends.',
author = 'Rushy Panchal',
author_email = '[email protected]',
url = 'https://github.com/PrincetonUniversity/pywsse',
keywords = ['REST', 'authentication', 'wsse'],
license = 'LGPLv3',
classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
],
)