We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7932f3 commit 12cf7c0Copy full SHA for 12cf7c0
http_csp/__init__.py
@@ -0,0 +1,5 @@
1
+import pkg_resources
2
+from .csp import CSP
3
+
4
+__name__ = "http-csp"
5
+__version__ = pkg_resources.get_distribution('http_csp').version
pyproject.toml
@@ -0,0 +1,14 @@
+[tool.poetry]
+name = "http-csp"
+version = "0.1.0"
+description = "HTTP Content Security Policy Manager"
+authors = ["Jacky Lam <[email protected]>"]
6
+license = "GNU GPLv3"
7
+readme = "README.md"
8
9
+[tool.poetry.dependencies]
10
+python = ">3.9"
11
12
+[build-system]
13
+requires = ["poetry-core"]
14
+build-backend = "poetry.core.masonry.api"
0 commit comments