Skip to content

Commit f7b5aaa

Browse files
authored
Merge pull request #10 from magnuswatn/v2
V2
2 parents 8713c5e + 40b424b commit f7b5aaa

14 files changed

+510
-228
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,6 @@ ENV/
9696

9797
# Pytest
9898
.pytest_cache/
99+
100+
# No need to have the Pipfile.lock checked in on libraries
101+
Pipfile.lock

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
sudo: false
2+
language: python
3+
python:
4+
- "2.7"
5+
- "3.4"
6+
- "3.5"
7+
- "3.6"
8+
install:
9+
- pip install tox-travis codecov
10+
script:
11+
- tox
12+
after_success:
13+
- codecov

Pipfile

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
"e1839a8" = {path = ".", extras = ["ntlm"], editable = true}
8+
9+
[dev-packages]
10+
pylint = "*"
11+
pytest = "*"
12+
pyOpenSSL = "*"
13+
14+
[pipenv]
15+
allow_prereleases = true

README.rst

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
certsrv
22
=======
33

4+
.. image:: https://travis-ci.org/magnuswatn/certsrv.svg?branch=master
5+
:target: https://travis-ci.org/magnuswatn/certsrv
6+
7+
.. image:: https://codecov.io/gh/magnuswatn/certsrv/branch/master/graph/badge.svg
8+
:target: https://codecov.io/gh/magnuswatn/certsrv
9+
10+
.. image:: https://badge.fury.io/py/certsrv.svg
11+
:target: https://pypi.org/project/certsrv/
12+
413
It is quite normal to have an internal PKI based on the Microsoft AD
514
Certificate Services, which work great with Windows, but not so much on
615
other OSes. Users of other OSes must often manually create a CSR and
@@ -31,4 +40,3 @@ Documentation
3140
-------------
3241

3342
See `Documentation <https://certsrv.readthedocs.org>`_
34-

0 commit comments

Comments
 (0)