forked from mehcode/python-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (49 loc) · 1.73 KB
/
setup.py
File metadata and controls
55 lines (49 loc) · 1.73 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
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from imp import load_source
setup(
name='saml2',
version=load_source('', 'saml2/_version.py').__version__,
description='A python interface to produce and consume Security '
'Assertion Markup Language (SAML) v2.0 messages.'
'Adopted from `python-saml` library.',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
author='TeamRocket Developers',
author_email='matt@lebrun.org',
url='https://github.com/TeamRocketDevelopers/python-saml2',
packages=find_packages('.'),
install_requires=(
# Extensions to the standard Python datetime module.
# Provides ability to easily parse ISO 8601 formatted dates.
'python-dateutil',
# lxml is the most feature-rich and easy-to-use library for
# processing XML and HTML in the Python language.
'lxml',
# Python bindings for the XML Security Library.
'xmlsec'
),
extras_require={
'test': (
# Test runner.
'pytest',
# Ensure PEP8 conformance.
'pytest-pep8',
# Ensure PyFlakes conformance.
'pytest-flakes',
# Ensure test coverage.
'pytest-cov',
)
}
)