Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-module-privacyidea-pam
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Eugene Omelyanovich
python-module-privacyidea-pam
Commits
c42e8bb3
Commit
c42e8bb3
authored
Mar 04, 2016
by
Cornelius Kölbel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
install the privacyidea_pam run travis tests
parent
5aad43d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
0 deletions
+42
-0
.travis.yml
.travis.yml
+1
-0
setup.py
setup.py
+41
-0
No files found.
.travis.yml
View file @
c42e8bb3
...
...
@@ -6,6 +6,7 @@ python:
-
3.4
# command to install dependencies
install
:
-
"
pip
install
."
-
"
pip
install
-r
requirements.txt"
# split the test run according to
# http://blog.travis-ci.com/2012-11-28-speeding-up-your-tests-by-parallelizing-them/
...
...
setup.py
0 → 100644
View file @
c42e8bb3
# -*- coding: utf-8 -*-
from
setuptools
import
setup
,
find_packages
import
os
import
glob
import
sys
#VERSION="2.1dev4"
VERSION
=
"2.11dev0"
install_requires
=
[]
# For python 2.6 we need additional dependency importlib
try
:
import
importlib
except
ImportError
:
install_requires
.
append
(
'importlib'
)
setup
(
name
=
'privacyidea_pam'
,
version
=
VERSION
,
author
=
'privacyidea.org'
,
license
=
'AGPLv3'
,
author_email
=
'cornelius@privacyidea.org'
,
url
=
'http://www.privacyidea.org'
,
keywords
=
'OTP, two factor authentication, management, security'
,
py_modules
=
[
'privacyidea_pam'
],
install_requires
=
install_requires
,
classifiers
=
[
"Framework :: Flask"
,
"License :: OSI Approved :: "
"GNU Affero General Public License v3"
,
"Programming Language :: Python"
,
"Development Status :: 5 - Production/Stable"
,
"Topic :: Internet"
,
"Topic :: Security"
,
"Topic :: System ::"
" Systems Administration :: Authentication/Directory"
],
#message_extractors={'privacyidea': [
# ('**.py', 'python', None),
# ('static/**.html', 'html', {'input_encoding': 'utf-8'})]},
zip_safe
=
False
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment