diff --git a/README.md b/README.md index 099f88a..55881cc 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ $ pip install secheaders 1. Clone into repository 2. `python -m build` -3. `pip install dist/secheaders-0.1.0-py3-none-any.whl` +3. `pip install dist/secheaders-0.1.1-py3-none-any.whl` 4. Run `secheaders --help` diff --git a/pyproject.toml b/pyproject.toml index 273fd11..bb6b3d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,26 +4,23 @@ build-backend = "hatchling.build" [project] name = "secheaders" -version = "0.1.0" +version = "0.1.1" requires-python = ">=3.8" -authors = [ - {name = "Jussi-Pekka Erkkilä", email = "jp.erkkila@gmail.com"}, -] -maintainers = [ - {name = "Jussi-Pekka Erkkilä", email = "jp.erkkila@gmail.com"} -] +authors = [{ name = "Jussi-Pekka Erkkilä", email = "jp.erkkila@gmail.com" }] +maintainers = [{ name = "Jussi-Pekka Erkkilä", email = "jp.erkkila@gmail.com" }] description = "Scan HTTP security headers" readme = "README.md" keywords = ["web", "security"] classifiers = [ - "Development Status :: 4 - Beta", - "Environment :: Console", - "Intended Audience :: Developers", - "Intended Audience :: System Administrators", - "License :: OSI Approved :: MIT License", - "Programming Language :: Python", - "Topic :: Security", + "Development Status :: 4 - Beta", + "Environment :: Console", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python", + "Topic :: Security", + "Topic :: Internet :: WWW/HTTP", ] [project.urls] @@ -34,4 +31,3 @@ Repository = "https://github.com/juerkkil/secheaders" [project.scripts] secheaders = "secheaders.securityheaders:main" -