Skip to content

Commit 3b4b570

Browse files
committed
Release 1.6.1
Now with description on PyPi :-)
1 parent 8ab084c commit 3b4b570

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.rst

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

4-
*A Python client for the Microsoft AD Certificate Services web page*
5-
64
It is quite normal to have an internal PKI based on the Microsoft AD
75
Certificate Services, which work great with Windows, but not so much on
86
other OSes. Users of other OSes must often manually create a CSR and

certsrv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import urllib2
99

1010

11-
__version__ = '1.6.0'
11+
__version__ = '1.6.1'
1212

1313
class RequestDeniedException(Exception):
1414
"""Signifies that the request was denied by the ADCS server."""

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,13 @@ def read_file(filename, encoding='utf8'):
1818
script_path = os.path.join(here, 'certsrv.py')
1919
version = dict(re.findall(r"""__([a-z]+)__ = '([^']+)""", read_file(script_path)))['version']
2020

21+
readme = read_file(os.path.join(here, 'README.rst'))
22+
2123

2224
setup(
2325
name='certsrv',
2426
description='A Python client for the Microsoft AD Certificate Services web page',
27+
long_description=readme,
2528
author='Magnus Watn',
2629
license='MIT',
2730
url='https://github.com/magnuswatn/certsrv',

0 commit comments

Comments
 (0)