Skip to content

Commit 12cf7c0

Browse files
committed
feat: Create project
1 parent f7932f3 commit 12cf7c0

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

http_csp/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[tool.poetry]
2+
name = "http-csp"
3+
version = "0.1.0"
4+
description = "HTTP Content Security Policy Manager"
5+
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

Comments
 (0)