Skip to content

Commit

Permalink
Merge pull request #111 from Santandersecurityresearch/develop
Browse files Browse the repository at this point in the history
Changes in pypi documentation
  • Loading branch information
pealtrufo authored Apr 24, 2020
2 parents 09d8436 + 5c225be commit 8b274bb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![GitHub release](https://img.shields.io/github/release/Santandersecurityresearch/DrHeader.svg)](https://GitHub.com/Santandersecurityresearch/DrHeader/releases/)
[![GitHub commits](https://img.shields.io/github/commits-since/Santandersecurityresearch/DrHeader/v1.2.0.svg)](https://GitHub.com/Santandersecurityresearch/DrHeader/commit/)
[![GitHub commits](https://img.shields.io/github/commits-since/Santandersecurityresearch/DrHeader/v1.2.1.svg)](https://GitHub.com/Santandersecurityresearch/DrHeader/commit/)
[![Github all releases](https://img.shields.io/github/downloads/Santandersecurityresearch/DrHeader/total.svg)](https://GitHub.com/Santandersecurityresearch/DrHeader/releases/)
[![HitCount](http://hits.dwyl.io/Santandersecurityresearch/DrHeader.svg)](http://hits.dwyl.io/Santandersecurityresearch/DrHeader)
[![Total alerts](https://img.shields.io/lgtm/alerts/g/Santandersecurityresearch/DrHeader.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Santandersecurityresearch/DrHeader/alerts/)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.0
current_version = 1.2.1
commit = True
tag = True

Expand Down
13 changes: 10 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@

from setuptools import setup

with open('README.md') as readme_file:
readme = readme_file.read()
import os

base_dir = os.path.dirname(__file__)


with open(os.path.join(base_dir, "README.md")) as f:
long_description = f.read()

with open('HISTORY.md') as history_file:
history = history_file.read()
Expand Down Expand Up @@ -39,7 +44,9 @@
],
},
install_requires=requirements,

description="DrHEADer helps with the audit of security headers received in response to a single request or a list of requests.",
long_description=long_description,
include_package_data=True,
keywords='drheader',
author='Santander UK Security Engineering',
Expand All @@ -49,6 +56,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/santandersecurityresearch/drheader',
version='1.2.0',
version='1.2.1',
zip_safe=False,
)

0 comments on commit 8b274bb

Please sign in to comment.